1
Il calderone dei template / greenwhite
« il: 13 Ott 2009, 13:46:27 »
PROBLEMA: visualizzando il contenuto di un qualsiasi articolo in testa mi stampa la seguente string prima del titolo:
'25', 'height' => '25')); ?>
nel file greenwhite/html/com_content/article/default.php, rigo 14
era presente questo..
artxFragmentBegin("<h2 class=\"art-PostHeaderIcon-wrapper\"><?php echo JHTML::_('image.site', 'PostHeaderIcon.png', null, null, null, JText::_(\"PostHeaderIcon\"), array('width' => '25', 'height' => '25')); ?> ");
l'ho sostituito con:
artxFragmentBegin("<h2 class=\"art-PostHeaderIcon-wrapper\">". JHTML::_('image.site', 'PostHeaderIcon.png', null, null, null, JText::_("PostHeaderIcon"), array('width' => '25', 'height' => '25')) );
l'errore SEMBRA risolto..
non essendo un esperto ne di joomla ne tantomeno di PHP vi chiedo di controllare ..
'25', 'height' => '25')); ?>
nel file greenwhite/html/com_content/article/default.php, rigo 14
era presente questo..
artxFragmentBegin("<h2 class=\"art-PostHeaderIcon-wrapper\"><?php echo JHTML::_('image.site', 'PostHeaderIcon.png', null, null, null, JText::_(\"PostHeaderIcon\"), array('width' => '25', 'height' => '25')); ?> ");
l'ho sostituito con:
artxFragmentBegin("<h2 class=\"art-PostHeaderIcon-wrapper\">". JHTML::_('image.site', 'PostHeaderIcon.png', null, null, null, JText::_("PostHeaderIcon"), array('width' => '25', 'height' => '25')) );
l'errore SEMBRA risolto..
non essendo un esperto ne di joomla ne tantomeno di PHP vi chiedo di controllare ..