]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/apiusershow.php
Updating Janrain OpenID auth library
[quix0rs-gnu-social.git] / actions / apiusershow.php
index ab1bfb9c9c7b7e7fa9d95f4242acd865f820ca07..0ea0b2e72fd93643eea57eacaadcfb1417ae30d8 100644 (file)
@@ -68,7 +68,7 @@ class ApiUserShowAction extends ApiPrivateAuthAction
         // XXX: email field deprecated in Twitter's API
 
         if (!empty($email)) {
-            $this->user = User::staticGet('email', $email);
+            $this->user = User::getKV('email', $email);
         } else {
             $this->user = $this->getTargetUser($this->arg('id'));
         }
@@ -104,7 +104,7 @@ class ApiUserShowAction extends ApiPrivateAuthAction
         $profile = $this->user->getProfile();
 
         if (empty($profile)) {
-            // TRANS: Client error displayed when requesting user information for a user without a profile.
+            // TRANS: Error message displayed when referring to a user without a profile.
             $this->clientError(_('User has no profile.'));
             return;
         }