BUG Fixed incorrect html encoding of SimplePie rss titles

This commit is contained in:
Damian Mooyman 2013-07-29 15:16:21 +12:00
parent 573ad1bda8
commit 9555373c21

View File

@ -87,7 +87,7 @@ if(class_exists('Widget')) {
// Cast the Title
$title = new Text('Title');
$title->setValue($item->get_title());
$title->setValue(html_entity_decode($item->get_title()));
$output->push(new ArrayData(array(
'Title' => $title,