このエラーがあります
「通知:未定義の変数:C:\ WAMP \ WWW \ SITE \ TOOLS \ SMARTY \ SYSPLUGINS \SMARTY_INTERNAL_DATA.PHPのロゴが291行のコールスタックにあります」
これが私のPHPコードです
function hookFooter($params)
{
global $smarty;
$smarty->assign('ENT_QUOTES', ENT_QUOTES);
if( file_exists('modules/ebbrandingfooter/logo-footer.jpg')){
$smarty->assign('logo','modules/ebbrandingfooter/logo-footer.jpg');
};
$FOOTERdescription=Configuration::get('FOOTER_DESC');
$smarty->assign('description',$FOOTERdescription );
return $this->display(__FILE__, 'ebbrandingfooter.tpl');
}
そしてここにTPL
{if $logo}<img src="{$logo}" />{/if}
<p>{$description}</p>
誰かが私が間違っていることを助けてくれますか?THX!!!