diff options
author | Zach Copley <zach@status.net> | 2010-01-10 21:35:46 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-14 02:41:05 +0000 |
commit | aba299c5d1b5aa466040401eb271482fab87995e (patch) | |
tree | 2babc8a9cea4ff2fe84fd9d5465d0f25cb5c9eaa /actions/showapplication.php | |
parent | 2e23638615275d7aec19b48f0333bbdabb1702ef (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', |