diff --git a/formats/AtomFormat.php b/formats/AtomFormat.php index 80a388df..6c5d7fcc 100644 --- a/formats/AtomFormat.php +++ b/formats/AtomFormat.php @@ -67,7 +67,11 @@ class AtomFormat extends FormatAbstract{ if (empty($entryContent)) $entryContent = $entryTitle; - $entryAuthor = $this->xml_encode($item->getAuthor()); + $entryAuthor = ''; + if ($item->getAuthor()) { + $entryAuthor = $this->xml_encode($item->getAuthor()); + } + $entryTitle = $this->xml_encode($entryTitle); $entryUri = $this->xml_encode($entryUri); $entryTimestamp = $this->xml_encode(gmdate(DATE_ATOM, $entryTimestamp));