From 2cc0c6663ca81d2ba2e6b494d1efbada238955bc Mon Sep 17 00:00:00 2001 From: Marcus Rohrmoser Date: Tue, 8 Nov 2016 22:40:44 +0100 Subject: [PATCH] fix indentation. --- formats/AtomFormat.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/formats/AtomFormat.php b/formats/AtomFormat.php index 38e02e1a..8e091379 100644 --- a/formats/AtomFormat.php +++ b/formats/AtomFormat.php @@ -26,9 +26,9 @@ class AtomFormat extends FormatAbstract{ $entryUri = isset($item['uri']) ? $this->xml_encode($item['uri']) : ''; $entryTimestamp = isset($item['timestamp']) ? $this->xml_encode(date(DATE_ATOM, $item['timestamp'])) : ''; $entryContent = isset($item['content']) ? $this->xml_encode($this->sanitizeHtml($item['content'])) : ''; - $entryEnclosures = ""; - foreach($item['enclosures'] as $enclosure) - $entryEnclosures .= "xml_encode($enclosure)."\"/>"; + $entryEnclosures = ""; + foreach($item['enclosures'] as $enclosure) + $entryEnclosures .= "xml_encode($enclosure)."\"/>"; $entries .= <<