]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Change OAuth authorization page's action name to be inline with
authorZach Copley <zach@status.net>
Thu, 21 Oct 2010 20:00:03 +0000 (13:00 -0700)
committerZach Copley <zach@status.net>
Thu, 21 Oct 2010 20:00:59 +0000 (13:00 -0700)
other web page action names so the body id outputs correctly. Fix
some other bugs.

actions/apioauthauthorize.php
lib/router.php

index 8bbe0d737fd90583febc89ad5ea6b02d3ed38649..82269e440c61ef98a75677a316276878d89850aa 100644 (file)
@@ -35,7 +35,7 @@ require_once INSTALLDIR . '/lib/apioauth.php';
 require_once INSTALLDIR . '/lib/info.php';
 
 /**
- * Authorize an OAuth request token
+ * Authorize an Oputh request token
  *
  * @category API
  * @package  StatusNet
@@ -43,7 +43,7 @@ require_once INSTALLDIR . '/lib/info.php';
  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  * @link     http://status.net/
  */
-class ApiOauthAuthorizeAction extends Action
+class ApioauthauthorizeAction extends Action
 {
     var $oauthTokenParam;
     var $reqToken;
@@ -120,7 +120,7 @@ class ApiOauthAuthorizeAction extends Action
                     // Check to make sure we haven't already authorized the token
                     if ($this->reqToken->state != 0) {
                         // TRANS: Client error given when an invalid request token was passed to the OAuth API.
-                        $this->clientError(_('Invalid request token.'));
+                        $this->clientError(_('Request token already authorized.'));
                     }
                 }
             }
@@ -461,7 +461,7 @@ class ApiOauthAuthorizeAction extends Action
     function showAside()
     {
         if ($this->desktopMode() == false) {
-            parent::showHeader();
+            parent::showAside();
         }
     }
 
@@ -471,7 +471,7 @@ class ApiOauthAuthorizeAction extends Action
     function showFooter()
     {
         if ($this->desktopMode() == false) {
-            parent::showHeader();
+            parent::showFooter();
         }
     }
 
index 417206e6bffb291921a1201fe063316af2638a3e..ff1b27925512e339868a8f08a02847323e91b5a4 100644 (file)
@@ -676,7 +676,7 @@ class Router
                         array('action' => 'ApiOauthAccessToken'));
 
             $m->connect('api/oauth/authorize',
-                        array('action' => 'ApiOauthAuthorize'));
+                        array('action' => 'apioauthauthorize'));
 
             // Admin