mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
BUG Fixed incorrect html encoding of SimplePie rss titles
This commit is contained in:
parent
573ad1bda8
commit
9555373c21
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user