Fix php error

This commit is contained in:
Frederic Guillot 2013-07-26 22:02:36 -04:00
parent 7a091c314f
commit 49930f2144
1 changed files with 1 additions and 1 deletions

View File

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