summaryrefslogtreecommitdiff
path: root/actions/allrss.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-07-22 12:32:00 -0400
committerEvan Prodromou <evan@prodromou.name>2008-07-22 12:32:00 -0400
commit39de5b81b38fb3fb2724f31afc4dab9f55d20591 (patch)
treedb524ccb5188a736655effdacbf02f270e4ef771 /actions/allrss.php
parent42ac47915ba32abcf41d2718b9032e084a7f5f88 (diff)
don't get a count anywhere
darcs-hash:20080722163200-84dde-736d11972503a37c062fe51c38c58eaf38a11862.gz
Diffstat (limited to 'actions/allrss.php')
-rw-r--r--actions/allrss.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/allrss.php b/actions/allrss.php
index 088d04037..9cbfe8dc8 100644
--- a/actions/allrss.php
+++ b/actions/allrss.php
@@ -43,7 +43,7 @@ class AllrssAction extends Rss10Action {
$user = $this->user;
- list($cnt, $notice) = $user->noticesWithFriends(0, $limit);
+ $notice = $user->noticesWithFriends(0, $limit);
while ($notice->fetch()) {
$notices[] = clone($notice);