From: Evan Prodromou Date: Sat, 20 Mar 2010 12:19:54 +0000 (-0500) Subject: rename $rss to $channel to prevent misunderstanding X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=65c8dc313c646a4ad4e16bc470b9ac795ca197dd;p=quix0rs-gnu-social.git 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. --- diff --git a/lib/activity.php b/lib/activity.php index 20e501acb4..478fcf7ae9 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); } }