summaryrefslogtreecommitdiff
path: root/actions/showstream.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/showstream.php')
-rw-r--r--actions/showstream.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/actions/showstream.php b/actions/showstream.php
index bf9df04a3..984c2454b 100644
--- a/actions/showstream.php
+++ b/actions/showstream.php
@@ -159,7 +159,14 @@ class ShowstreamAction extends StreamAction {
global $config;
# XXX: add a limit
- $subs = $profile->getLink('id', 'subscription', 'subscriber');
+ $subs = DB_DataObject::factory('subscription');
+ $subs->subscriber = $profile->id;
+
+ # We ask for an extra one to know if we need to do another page
+
+ $subs->limit(0, SUBSCRIPTIONS);
+
+ $subs_count = $subs->find();
common_element_start('div', 'subscriptions');