diff --git a/actions/showapplication.php b/actions/showapplication.php index 3872730064..10aaff538f 100644 --- a/actions/showapplication.php +++ b/actions/showapplication.php @@ -281,7 +281,7 @@ class ShowApplicationAction extends OwnerDesignAction $this->elementStart('dl', 'entity_authorize_url'); $this->element('dt', null, _('Authorize URL')); - $this->element('dd', null, common_local_url('apioauthauthorize')); + $this->element('dd', null, common_local_url('ApiOauthAuthorize')); $this->elementEnd('dl'); $this->element('p', 'note', diff --git a/lib/router.php b/lib/router.php index ff1b279255..417206e6bf 100644 --- a/lib/router.php +++ b/lib/router.php @@ -676,7 +676,7 @@ class Router array('action' => 'ApiOauthAccessToken')); $m->connect('api/oauth/authorize', - array('action' => 'apioauthauthorize')); + array('action' => 'ApiOauthAuthorize')); // Admin diff --git a/plugins/OpenID/OpenIDPlugin.php b/plugins/OpenID/OpenIDPlugin.php index 87eab94a20..d8127aa68b 100644 --- a/plugins/OpenID/OpenIDPlugin.php +++ b/plugins/OpenID/OpenIDPlugin.php @@ -713,7 +713,7 @@ class OpenIDPlugin extends Plugin require_once dirname(__FILE__) . '/openid.php'; oid_assert_allowed($openid_url); - $returnto = common_local_url('apioauthauthorize', array(), + $returnto = common_local_url('ApiOauthAuthorize', array(), array('oauth_token' => $action->arg('oauth_token'))); common_set_returnto($returnto);