diff options
author | mac65 <mac65@mac65.com> | 2008-09-22 18:34:29 -0400 |
---|---|---|
committer | mac65 <mac65@mac65.com> | 2008-09-22 18:34:29 -0400 |
commit | b0b1d201d7d2b9694a862e717c24054af8e6fd78 (patch) | |
tree | d4ba231d9450c34afeb11cc780439a97565fc2ec /actions/twitapiusers.php | |
parent | 3017ad3f010bf0f9b6f1b9da104ccbdd2c1a25d2 (diff) |
Fix ticket 460
The show action for the twitter user API was using subscribed instead of
subscriber to grab the friends_count.
darcs-hash:20080922223429-e558a-4b456954f475c022be288e85a186ffa8794fad03.gz
Diffstat (limited to 'actions/twitapiusers.php')
-rw-r--r-- | actions/twitapiusers.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/twitapiusers.php b/actions/twitapiusers.php index 233de3c21..6dad53818 100644 --- a/actions/twitapiusers.php +++ b/actions/twitapiusers.php @@ -89,7 +89,7 @@ class TwitapiusersAction extends TwitterapiAction { $twitter_user['created_at'] = $this->date_twitter($profile->created); $subbed = DB_DataObject::factory('subscription'); - $subbed->subscribed = $profile->id; + $subbed->subscriber = $profile->id; $subbed_count = (int) $subbed->count() - 1; $notices = DB_DataObject::factory('notice'); |