diff options
author | Zach Copley <zach@status.net> | 2010-01-10 21:35:46 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-24 16:36:02 -0800 |
commit | e9e448bcee69b0c39badf353faedb4c29af3f502 (patch) | |
tree | a484d76bbc25380e497319d92b69b599aa7c3de4 /actions/showapplication.php | |
parent | fa81a580bb9eea76e7739f37010b35e4b919f410 (diff) |
Workflow for request tokens and authorizing request tokens
Diffstat (limited to 'actions/showapplication.php')
-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 6d19b9561..5156fa6f0 100644 --- a/actions/showapplication.php +++ b/actions/showapplication.php @@ -231,17 +231,17 @@ class ShowApplicationAction extends OwnerDesignAction $this->elementStart('dl', 'entity_request_token_url'); $this->element('dt', null, _('Request token URL')); - $this->element('dd', 'label', common_local_url('oauthrequesttoken')); + $this->element('dd', 'label', common_local_url('apioauthrequesttoken')); $this->elementEnd('dl'); $this->elementStart('dl', 'entity_access_token_url'); $this->element('dt', null, _('Access token URL')); - $this->element('dd', 'label', common_local_url('oauthaccesstoken')); + $this->element('dd', 'label', common_local_url('apioauthaccesstoken')); $this->elementEnd('dl'); $this->elementStart('dl', 'entity_authorize_url'); $this->element('dt', null, _('Authorize URL')); - $this->element('dd', 'label', common_local_url('oauthauthorize')); + $this->element('dd', 'label', common_local_url('apioauthauthorize')); $this->elementEnd('dl'); $this->element('p', 'oauth-signature-note', |