diff --git a/src/Protocol/Feed.php b/src/Protocol/Feed.php index 65f2e7b863..c678cf0ae8 100644 --- a/src/Protocol/Feed.php +++ b/src/Protocol/Feed.php @@ -267,7 +267,7 @@ class Feed { $item["title"] = XML::getFirstNodeValue($xpath, 'rss:title/text()', $entry); } - $item["title"] = mb_convert_encoding($item["title"], 'HTML-ENTITIES', "UTF-8"); + $item["title"] = html_entity_decode($item["title"], ENT_QUOTES, 'UTF-8'); $published = XML::getFirstNodeValue($xpath, 'atom:published/text()', $entry);