Fix php error
This commit is contained in:
parent
7a091c314f
commit
49930f2144
2
vendor/PicoFeed/Parsers/Atom.php
vendored
2
vendor/PicoFeed/Parsers/Atom.php
vendored
@ -32,7 +32,7 @@ class Atom extends \PicoFeed\Parser
|
||||
|
||||
$item = new \StdClass;
|
||||
$item->url = $this->getUrl($entry);
|
||||
$item->id = $this->generateId($id !== $item->url ? $id : $item->$url, $this->url);
|
||||
$item->id = $this->generateId($id !== $item->url ? $id : $item->url, $this->url);
|
||||
$item->title = $this->stripWhiteSpace((string) $entry->title);
|
||||
$item->updated = strtotime((string) $entry->updated);
|
||||
$item->author = $author;
|
||||
|
Loading…
Reference in New Issue
Block a user