summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2010-10-21 13:00:03 -0700
committerZach Copley <zach@status.net>2010-10-21 13:00:59 -0700
commit648f79be10c1f62eb649563aa4f1cd5c51ddb19f (patch)
treeb1962a3cfc01153c93c2776d0b5113cfcd7efede /actions
parentbab012bd67bdaf431f7bdba707c9fdebb7d6b6bb (diff)
Change OAuth authorization page's action name to be inline with
other web page action names so the body id outputs correctly. Fix some other bugs.
Diffstat (limited to 'actions')
-rw-r--r--actions/apioauthauthorize.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/actions/apioauthauthorize.php b/actions/apioauthauthorize.php
index 8bbe0d737..82269e440 100644
--- a/actions/apioauthauthorize.php
+++ b/actions/apioauthauthorize.php
@@ -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();
}
}