summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2010-09-23 16:16:32 -0700
committerZach Copley <zach@status.net>2010-09-23 16:19:21 -0700
commitc75bd62a4c4f25287beb4e1ca43bb4f94b4ffcd9 (patch)
tree189acd76c15ea836bbb65ac796790dcbb3fa96d1
parent62f7d6c74dcfca5f073c04aa3ba68b9d6a4ac77d (diff)
Update OAuth actions in show application page so it will display the right endpoint URLs
-rw-r--r--actions/showapplication.php6
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',