diff options
author | Brion Vibber <brion@pobox.com> | 2010-04-09 15:19:04 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-04-09 15:19:04 -0700 |
commit | ae4ade53a801309105ab3e0ae680dc9e186033c1 (patch) | |
tree | 3dfc6684dbc400ebef9c303e6335c8040572c6c5 | |
parent | 85fb32a3595cd7cdd7d5e58cedaaac2ef5180472 (diff) |
Fix E_NOTICE and use of limit on userrss
-rw-r--r-- | actions/userrss.php | 2 |
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(); |