Re: Error with Simple Image gallery 2.2 in Joomla 1.6
« Reply #2 on: June 02, 2011, 05:25:53 PM »
Hello , if it can help , I had the same error , so I changed the line 14 in the php file
from this :
$photoCaption = htmlentities(JText::_(‘JW_SIG_NAVTIP’).’ <b>’.$row->title.'</b><br /><br />’, ENT_QUOTES, ‘utf-8’);
from this :
$photoCaption = htmlentities(JText::_(‘JW_SIG_NAVTIP’).’ <b>’.$row->title.'</b><br /><br />’, ENT_QUOTES, ‘utf-8’);
to this :
$photoCaption = htmlentities(JText::_(‘JW_SIG_NAVTIP’).’ <b></b><br /><br />’, ENT_QUOTES, ‘utf-8’);
in fact I’d just remove ‘.$row->title.’ from the initial line.
then all the functionalities work fine.
Hope it’ll help.