diff --git a/actions/public.php b/actions/public.php index d92a704a6b..270c082ba3 100644 --- a/actions/public.php +++ b/actions/public.php @@ -48,7 +48,9 @@ class PublicAction extends StreamAction { $notice = DB_DataObject::factory('notice'); - # XXX: filter out private notifications + # FIXME: bad performance + + $notice->whereAdd('EXISTS (SELECT user.id from user where user.id = notice.profile_id)'); $notice->orderBy('created DESC'); diff --git a/actions/publicrss.php b/actions/publicrss.php index 0cf572dbe7..93314ee326 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'); diff --git a/doc/roadmap b/doc/roadmap index 4caeb4e612..f8c417275a 100644 --- a/doc/roadmap +++ b/doc/roadmap @@ -147,7 +147,7 @@ First public release (theoretically). Added distributed subscriptions, + correct use of views menu in settings + correct use of views menu in streams - INSTALL file -- content negotiation for content type ++ content negotiation for content type Release 0.4 -----------