Merge pull request #6145 from Alkarex/ATOM-title-encoding
Fix ATOM feed entry titles encoding
This commit is contained in:
commit
9e25270699
|
@ -1945,7 +1945,7 @@ class OStatus
|
||||||
}
|
}
|
||||||
|
|
||||||
XML::addElement($doc, $entry, "id", $item["uri"]);
|
XML::addElement($doc, $entry, "id", $item["uri"]);
|
||||||
XML::addElement($doc, $entry, "title", $title);
|
XML::addElement($doc, $entry, "title", html_entity_decode($title, ENT_QUOTES, 'UTF-8'));
|
||||||
|
|
||||||
$body = self::formatPicturePost($item['body']);
|
$body = self::formatPicturePost($item['body']);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user