X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=classes%2FProfile_list.php;h=0586a8688c9d20fbe9bd10d6652dd0ce978924ac;hb=efb7d28d830b1057cc0e57496dcb263955bbb358;hp=2395a369f3b0d2f9059abb17ec7e021afe47de9b;hpb=89816551e67dd8b94ce3d15bf4c5233f96f5ba9d;p=quix0rs-gnu-social.git diff --git a/classes/Profile_list.php b/classes/Profile_list.php index 2395a369f3..0586a8688c 100644 --- a/classes/Profile_list.php +++ b/classes/Profile_list.php @@ -185,10 +185,12 @@ class Profile_list extends Memcached_DataObject function getSubscribers($offset=0, $limit=null, $since=0, $upto=0) { $subs = new Profile(); - $sub = new Profile_tag_subscription(); - $sub->profile_tag_id = $this->id; - $subs->joinAdd($sub); + $subs->joinAdd( + array('id', 'profile_tag_subscription:profile_id') + ); + $subs->whereAdd('profile_tag_subscription.profile_tag_id = ' . $this->id); + $subs->selectAdd('unix_timestamp(profile_tag_subscription.' . 'created) as "cursor"');