1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-06-28 05:43:16 +02:00

[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

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 = '';