Merge pull request #7534 from MrPetovan/bug/7350-feed-title-entities

Add entry title HTML entities conversion in Protocol\Feed
This commit is contained in:
Philipp 2019-08-18 15:59:58 +02:00 committed by GitHub
commit 1fd1849641
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -266,6 +266,9 @@ class Feed {
if (empty($item["title"])) {
$item["title"] = XML::getFirstNodeValue($xpath, 'rss:title/text()', $entry);
}
$item["title"] = mb_convert_encoding($item["title"], 'HTML-ENTITIES', "UTF-8");
$published = XML::getFirstNodeValue($xpath, 'atom:published/text()', $entry);
if (empty($published)) {