From 65c8dc313c646a4ad4e16bc470b9ac795ca197dd Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 20 Mar 2010 07:19:54 -0500 Subject: rename $rss to $channel to prevent misunderstanding RSS feeds have the format . The element named $rss was actually the element, so I renamed the variable so I wouldn't hurt my head. --- lib/activity.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/activity.php b/lib/activity.php index 20e501acb..478fcf7ae 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -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); } } -- cgit v1.2.3-54-g00ecf