diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-06-15 22:50:14 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-06-15 22:50:14 +0000 |
commit | 12cd87cd7b7c207b6f9c30996f0fabb019d6fd76 (patch) | |
tree | a1df743111786056ecb23164ddf5e2a06a5733f0 | |
parent | c077ad0775218e6aa8660ba97129ad74b5d54773 (diff) |
Missing call to getProfile() caused verify_credentials to fail.
-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 13a8746cd..21a56a9a5 100644 --- a/actions/twitapiusers.php +++ b/actions/twitapiusers.php @@ -58,7 +58,7 @@ class TwitapiusersAction extends TwitterapiAction return; } - $twitter_user = $this->twitter_user_array($profile, true); + $twitter_user = $this->twitter_user_array($user->getProfile(), true); if ($apidata['content-type'] == 'xml') { $this->init_document('xml'); |