From: Evan Prodromou Date: Sun, 28 Sep 2008 17:51:56 +0000 (-0400) Subject: remove unneeded find() in userrss.php X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=dc5f47ab4a500a4ba128e916c26eb1d55a67049b;p=quix0rs-gnu-social.git remove unneeded find() in userrss.php darcs-hash:20080928175156-5ed1f-f33007b9dd9ee73632e48fc4bf45f29fb63ae494.gz --- diff --git a/actions/userrss.php b/actions/userrss.php index da305f675b..1f103dc084 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -49,8 +49,6 @@ class UserrssAction extends Rss10Action { $notice = $user->getNotices(0, ($limit == 0) ? NOTICES_PER_PAGE : $limit); - $notice->find(); - while ($notice->fetch()) { $notices[] = clone($notice); }