Ignite Gallery 2.5 – category descriptions stripped of all html tags
Fix posted by Matt on ignite’s support forum:
Edit components/com_igallery/views/igcategory/view.html.php change line 189:
- Code:
$document->setDescription( substr( JFilterOutput::cleanText($category->gallery_description), 0, 200 ) );
so it is now these 2 lines:
- Code:
$description = $category->gallery_description;
$document->setDescription( substr( JFilterOutput::cleanText($description), 0, 200 ) );
Tags: Ignite Gallery, Joomla!