$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');
$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');
+ 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
-----------