From: Zach Copley Date: Sat, 6 Mar 2010 00:52:15 +0000 (-0800) Subject: No need to pass in $this->limit and $this-tag X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d59284d42d3735e393e5e99d027136d96778600d;p=quix0rs-gnu-social.git No need to pass in $this->limit and $this-tag --- diff --git a/actions/userrss.php b/actions/userrss.php index 77bd316b2d..e03eb93566 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -41,9 +41,9 @@ class UserrssAction extends Rss10Action return false; } else { if (!empty($this->tag)) { - $this->notices = $this->getTaggedNotices($this->tag, $this->limit); + $this->notices = $this->getTaggedNotices(); } else { - $this->notices = $this->getNotices($this->limit); + $this->notices = $this->getNotices(); } return true; }