From: Zach Copley Date: Tue, 7 Jul 2009 21:21:44 +0000 (-0700) Subject: user/show API method needs to fall back to basic auth so that X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=802b9095188d51fd64d459291ca8828530220e83;p=quix0rs-gnu-social.git user/show API method needs to fall back to basic auth so that verify_credentials works correctly. --- diff --git a/actions/twitapiusers.php b/actions/twitapiusers.php index e9fcccbde1..de8326e3ad 100644 --- a/actions/twitapiusers.php +++ b/actions/twitapiusers.php @@ -43,7 +43,7 @@ class TwitapiusersAction extends TwitterapiAction if ($email) { $user = User::staticGet('email', $email); } else { - $user = $this->get_user($apidata['api_arg']); + $user = $this->get_user($apidata['api_arg'], $apidata); } if (empty($user)) {