diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-22 10:41:54 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-22 10:41:54 -0400 |
commit | ab1f2ff9d07088c7a3607ee6d05b1042d735960d (patch) | |
tree | 8b9811c2997b0bc19ae02a5d576fe74e5994aad6 /actions/showstream.php | |
parent | 5f79bcdf51e0cbc17f62c6899207813f26a29214 (diff) |
every user is subscribed to themselves
darcs-hash:20080722144154-84dde-80beabad9a681f2e12edb34ceb4ac249f4ce6705.gz
Diffstat (limited to 'actions/showstream.php')
-rw-r--r-- | actions/showstream.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actions/showstream.php b/actions/showstream.php index bccdd3cc8..87858e14b 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -205,6 +205,8 @@ class ShowstreamAction extends StreamAction { $subs = DB_DataObject::factory('subscription'); $subs->subscriber = $profile->id; + $subs->whereAdd('subscribed != ' . $profile->id); + $subs->orderBy('created DESC'); # We ask for an extra one to know if we need to do another page |