summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2010-03-05 16:52:15 -0800
committerZach Copley <zach@status.net>2010-03-05 16:53:48 -0800
commit421041c51aa4a92fa2c6f03cedcbd30d8cdfb7d4 (patch)
tree52b5765952e103112664ace26ca398b454ed75d6 /actions
parent3d8ddb7cf1b6477dde4b9e101f26d58d4b09c004 (diff)
No need to pass in $this->limit and $this-tag
Diffstat (limited to 'actions')
-rw-r--r--actions/userrss.php4
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;
}