]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
No need to pass in $this->limit and $this-tag
authorZach Copley <zach@status.net>
Sat, 6 Mar 2010 00:52:15 +0000 (16:52 -0800)
committerZach Copley <zach@status.net>
Sat, 6 Mar 2010 00:53:48 +0000 (16:53 -0800)
actions/userrss.php

index 77bd316b2d1d3f5a61d95513c6bf8e070a23d4c5..e03eb93566d3c96dae04c8e6526a2f5835362996 100644 (file)
@@ -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;
         }