Intereting Posts

Ошибка переменной PHP smarty

У меня есть эта ошибка

«УВЕДОМЛЕНИЕ: НЕ УКАЗАННАЯ ПЕРЕМЕННАЯ: ЛОГОТИП В C: \ WAMP \ WWW \ SITE \ TOOLS \ SMARTY \ SYSPLUGINS \ SMARTY_INTERNAL_DATA.PHP ON LINE 291 CALL STACK"

Вот мой 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> 

Может ли кто-нибудь помочь мне, что я делаю неправильно? СПАСИБО!!!