From 81e6d50c533964899308e5745745381c340a1764 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 22 Jul 2008 12:15:49 -0400 Subject: blow off DB_DataObject joins, write SQL from scratch darcs-hash:20080722161549-84dde-fedeed101bdef172f4a7aabf2278f1a2277a6d88.gz --- actions/allrss.php | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'actions/allrss.php') diff --git a/actions/allrss.php b/actions/allrss.php index a64b47641..b6701cfdc 100644 --- a/actions/allrss.php +++ b/actions/allrss.php @@ -43,13 +43,11 @@ class AllrssAction extends Rss10Action { $user = $this->user; - $notice = $user->noticesWithFriends(); + $notice = $user->noticesWithFriends(0, $limit); + + # XXX: revisit constant scope - if ($limit != 0) { - $notice->limit(0, $limit); - } - - $notice->find(); + $cnt = $notice->find(); while ($notice->fetch()) { $notices[] = clone($notice); -- cgit v1.2.3-54-g00ecf