I need to put this {$LANG.home}
which equals to "Home", into this:
$ca->addToBreadCrumb('index.php','Home');
I tried:
$ca->addToBreadCrumb('index.php',$LANG.home);
but no cigar.
Any assistance would be greatly appreciated.
Well I'm going on a guess but if {$LANG.home}
is a Smarty variable then $LANG
is an array so:
$ca->addToBreadCrumb('index.php', $LANG['home']);