summaryrefslogtreecommitdiff
path: root/actions/publicrss.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-13 11:24:20 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-13 11:24:20 -0400
commit1d8aa56808d2208021bd913b86e720f7ae72c231 (patch)
treeb76d7eea5b75efad44106368b5aae8891e8451be /actions/publicrss.php
parenta86477aad3bab8ad519626c56e3e253faea50518 (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.php4
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');