Merge pull request #98 from tractorcow/3.0-simplepie-encoding-fix

BUG Fixed incorrect html encoding of SimplePie rss titles
This commit is contained in:
Will Rossiter 2014-01-10 15:28:32 -08:00
commit 6653cc2546
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,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,