[core] Fix double XML encoding on Atom feed title (#1247)

This commit is contained in:
somini 2019-08-28 15:29:13 +01:00 committed by Lyra
parent b68c0e0df8
commit 48d0385653
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class AtomFormat extends FormatAbstract{
$entries = '';
foreach($this->getItems() as $item) {
$entryTimestamp = $item->getTimestamp();
$entryTitle = $this->xml_encode($item->getTitle());
$entryTitle = $item->getTitle();
$entryContent = $item->getContent();
$entryUri = $item->getURI();
$entryID = '';