mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
fix: deprecation notice (#2656)
This commit is contained in:
parent
d6beb713b5
commit
91283f3a62
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user