diff options
author | Zach Copley <zach@status.net> | 2010-09-23 16:16:32 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-09-23 16:16:32 -0700 |
commit | da048589021b59e9165529567b9b018290432c72 (patch) | |
tree | 857d01e25328328e98ac877dd3a9d31a3f5cce13 /actions | |
parent | 2006ced30a710cf732856b6e7f5fa464fc3767dd (diff) |
Update OAuth actions in show application page so it will display the right endpoint URLs
Diffstat (limited to 'actions')
-rw-r--r-- | actions/showapplication.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/showapplication.php b/actions/showapplication.php index fa4484481..10aaff538 100644 --- a/actions/showapplication.php +++ b/actions/showapplication.php @@ -271,17 +271,17 @@ class ShowApplicationAction extends OwnerDesignAction $this->elementStart('dl', 'entity_request_token_url'); $this->element('dt', null, _('Request token URL')); - $this->element('dd', null, common_local_url('apioauthrequesttoken')); + $this->element('dd', null, common_local_url('ApiOauthRequestToken')); $this->elementEnd('dl'); $this->elementStart('dl', 'entity_access_token_url'); $this->element('dt', null, _('Access token URL')); - $this->element('dd', null, common_local_url('apioauthaccesstoken')); + $this->element('dd', null, common_local_url('ApiOauthAccessToken')); $this->elementEnd('dl'); $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', |