diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-13 11:24:20 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-13 11:24:20 -0400 |
commit | 1d8aa56808d2208021bd913b86e720f7ae72c231 (patch) | |
tree | b76d7eea5b75efad44106368b5aae8891e8451be /actions/publicrss.php | |
parent | a86477aad3bab8ad519626c56e3e253faea50518 (diff) |
mark off TODO, only local notices in public stream
darcs-hash:20080613152420-84dde-76da80c7345815986ee47fab45dcbde2bad895ab.gz
Diffstat (limited to 'actions/publicrss.php')
-rw-r--r-- | actions/publicrss.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/actions/publicrss.php b/actions/publicrss.php index 0cf572dbe..93314ee32 100644 --- a/actions/publicrss.php +++ b/actions/publicrss.php @@ -35,6 +35,10 @@ class PublicrssAction extends Rss10Action { $notices = array(); $notice = DB_DataObject::factory('notice'); + + # FIXME: bad performance + + $notice->whereAdd('EXISTS (SELECT user.id from user where user.id = notice.profile_id)'); $notice->orderBy('created DESC'); |