]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix syntax errors
authorZach Copley <zach@status.net>
Fri, 22 Oct 2010 00:48:26 +0000 (00:48 +0000)
committerZach Copley <zach@status.net>
Fri, 22 Oct 2010 00:48:26 +0000 (00:48 +0000)
actions/apioauthauthorize.php

index 30fe77ec832f8c567deacfb0987515bab54b76db..0b6cf34bd20970024dab5021d9d102c657e92aed 100644 (file)
@@ -560,7 +560,7 @@ class ApiOauthAuthorizeAction extends Action
                 // TRANS: User notification after revoking OAuth access to an application.
                 // TRANS: %s is an OAuth token.
                 _('The request token %s has been revoked.'),
-                $this->oauthTokenParm
+                $this->oauthTokenParam
             )
         );
 
@@ -618,7 +618,7 @@ class ApiOauthAuthorizeAction extends Action
         $callback = null;
 
         // Return the verified callback if we have one
-        if ($this->app->type == 2) {
+        if ($this->reqToken->verified_callback != 'oob') {
 
             $callback = $this->reqToken->verified_callback;