Update OAuth actions in show application page so it will display the right endpoint URLs

This commit is contained in:
Zach Copley 2010-09-23 16:16:32 -07:00
parent 62f7d6c74d
commit c75bd62a4c
1 changed files with 3 additions and 3 deletions

View File

@ -271,17 +271,17 @@ class ShowApplicationAction extends OwnerDesignAction
$this->elementStart('dl', 'entity_request_token_url'); $this->elementStart('dl', 'entity_request_token_url');
$this->element('dt', null, _('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->elementEnd('dl');
$this->elementStart('dl', 'entity_access_token_url'); $this->elementStart('dl', 'entity_access_token_url');
$this->element('dt', null, _('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->elementEnd('dl');
$this->elementStart('dl', 'entity_authorize_url'); $this->elementStart('dl', 'entity_authorize_url');
$this->element('dt', null, _('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->elementEnd('dl');
$this->element('p', 'note', $this->element('p', 'note',