explicit join for subscribers to a profile list

This commit is contained in:
Evan Prodromou 2011-08-26 11:39:06 -04:00
parent f251c2e036
commit a47c372ac4
1 changed files with 2 additions and 3 deletions

View File

@ -220,10 +220,9 @@ class Profile_list extends Managed_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_tag_id'));
$subs->selectAdd('unix_timestamp(profile_tag_subscription.' .
'created) as "cursor"');