fix: deprecation notice (#2656)

This commit is contained in:
Dag 2022-04-13 21:35:54 +02:00 committed by GitHub
parent d6beb713b5
commit 91283f3a62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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));