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:
Evan Prodromou 2010-03-20 07:19:54 -05:00
parent c0f6572001
commit 65c8dc313c
1 changed files with 3 additions and 3 deletions

View File

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