From 48d038565321f9b550cc304f389d3ee904010757 Mon Sep 17 00:00:00 2001 From: somini Date: Wed, 28 Aug 2019 15:29:13 +0100 Subject: [PATCH] [core] Fix double XML encoding on Atom feed title (#1247) --- formats/AtomFormat.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formats/AtomFormat.php b/formats/AtomFormat.php index 02d7d61a..1159a616 100644 --- a/formats/AtomFormat.php +++ b/formats/AtomFormat.php @@ -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 = '';