From 9555373c2180f3ebb4b7f5d20d50d04d5406979b Mon Sep 17 00:00:00 2001 From: Damian Mooyman Date: Mon, 29 Jul 2013 15:16:21 +1200 Subject: [PATCH] BUG Fixed incorrect html encoding of SimplePie rss titles --- code/widgets/RSSWidget.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/widgets/RSSWidget.php b/code/widgets/RSSWidget.php index cc34979..542fb78 100644 --- a/code/widgets/RSSWidget.php +++ b/code/widgets/RSSWidget.php @@ -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,