summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-04-09 15:19:04 -0700
committerBrion Vibber <brion@pobox.com>2010-04-09 15:19:04 -0700
commitae4ade53a801309105ab3e0ae680dc9e186033c1 (patch)
tree3dfc6684dbc400ebef9c303e6335c8040572c6c5 /actions
parent85fb32a3595cd7cdd7d5e58cedaaac2ef5180472 (diff)
Fix E_NOTICE and use of limit on userrss
Diffstat (limited to 'actions')
-rw-r--r--actions/userrss.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/userrss.php b/actions/userrss.php
index e03eb9356..8f597e625 100644
--- a/actions/userrss.php
+++ b/actions/userrss.php
@@ -72,7 +72,7 @@ class UserrssAction extends Rss10Action
{
$notice = $this->user->getNotices(
0,
- ($limit == 0) ? NOTICES_PER_PAGE : $limit
+ ($this->limit == 0) ? NOTICES_PER_PAGE : $this->limit
);
$notices = array();