rename $rss to $channel to prevent misunderstanding
RSS feeds have the format <rss><channel><item/><item/><item/></channel></rss>. The element named $rss was actually the <channel> element, so I renamed the variable so I wouldn't hurt my head.
This commit is contained in:
parent
c0f6572001
commit
65c8dc313c
|
@ -1329,7 +1329,7 @@ class Activity
|
|||
}
|
||||
}
|
||||
|
||||
function _fromRssItem($item, $rss)
|
||||
function _fromRssItem($item, $channel)
|
||||
{
|
||||
$verbEl = $this->_child($item, self::VERB);
|
||||
|
||||
|
@ -1354,8 +1354,8 @@ class Activity
|
|||
$dcCreatorEl = $this->_child($item, self::CREATOR, self::DC);
|
||||
if (!empty($dcCreatorEl)) {
|
||||
$this->actor = ActivityObject::fromDcCreator($dcCreatorEl);
|
||||
} else if (!empty($rss)) {
|
||||
$this->actor = ActivityObject::fromRssChannel($rss);
|
||||
} else if (!empty($channel)) {
|
||||
$this->actor = ActivityObject::fromRssChannel($channel);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user