From c24f4ddfdbf00f024730c1f76e3f17e8e3999d85 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 20 Oct 2010 16:14:32 -0700 Subject: Pretty up the OpenID variant of the OAuth login form a bit; change the 'Allow' button to 'Continue' so we're not confused why we get the form again after authenticating. --- actions/apioauthauthorize.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'actions') diff --git a/actions/apioauthauthorize.php b/actions/apioauthauthorize.php index b603dce4a..135c146e5 100644 --- a/actions/apioauthauthorize.php +++ b/actions/apioauthauthorize.php @@ -347,8 +347,10 @@ class ApiOauthAuthorizeAction extends Action $this->elementEnd('li'); $this->elementEnd('ul'); + // quickie hack + $button = false; if (!common_logged_in()) { - if (Event::handle('StartOAuthLoginForm', array($this))) { + if (Event::handle('StartOAuthLoginForm', array($this, &$button))) { $this->elementStart('fieldset'); // TRANS: Fieldset legend. $this->element('legend', null, _m('LEGEND','Account')); @@ -365,7 +367,7 @@ class ApiOauthAuthorizeAction extends Action $this->elementEnd('fieldset'); } - Event::handle('EndOAuthLoginForm', array($this)); + Event::handle('EndOAuthLoginForm', array($this, &$button)); } $this->element('input', array('id' => 'cancel_submit', @@ -381,7 +383,7 @@ class ApiOauthAuthorizeAction extends Action 'name' => 'allow', 'type' => 'submit', // TRANS: Button text that when clicked will allow access to an account by an external application. - 'value' => _m('BUTTON','Allow'))); + 'value' => $button ? $button : _m('BUTTON','Allow'))); $this->elementEnd('fieldset'); $this->elementEnd('form'); -- cgit v1.2.3-54-g00ecf