diff options
author | Zach Copley <zach@status.net> | 2010-03-05 16:52:15 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-03-05 16:52:15 -0800 |
commit | d59284d42d3735e393e5e99d027136d96778600d (patch) | |
tree | de015e59d6714cedd28a6a6421d3f863f70a4e4e | |
parent | 4ada86560c7c9ef43e41e6c3cdf279d64ea132ba (diff) |
No need to pass in $this->limit and $this-tag
-rw-r--r-- | actions/userrss.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/userrss.php b/actions/userrss.php index 77bd316b2..e03eb9356 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; } |