mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 09:05:58 +00:00
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:
commit
6653cc2546
@ -93,7 +93,7 @@ if (class_exists('Widget')) {
|
|||||||
|
|
||||||
// Cast the Title
|
// Cast the Title
|
||||||
$title = new Text('Title');
|
$title = new Text('Title');
|
||||||
$title->setValue($item->get_title());
|
$title->setValue(html_entity_decode($item->get_title()));
|
||||||
|
|
||||||
$output->push(new ArrayData(array(
|
$output->push(new ArrayData(array(
|
||||||
'Title' => $title,
|
'Title' => $title,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user