diff options
Diffstat (limited to 'actions/openidlogin.php')
-rw-r--r-- | actions/openidlogin.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/actions/openidlogin.php b/actions/openidlogin.php index 6ce4bb191..ecc4e6bff 100644 --- a/actions/openidlogin.php +++ b/actions/openidlogin.php @@ -38,14 +38,17 @@ class OpenidloginAction extends Action { } } - function show_form($error=NULL) { - common_show_header(_t('OpenID Login')); + function show_top($error=NULL) { if ($error) { common_element('div', array('class' => 'error'), $error); } else { common_element('div', 'instructions', _t('Login with an OpenID account.')); } + } + + function show_form($error=NULL) { + common_show_header(_t('OpenID Login'), NULL, $error, array($this, 'show_top')); $formaction = common_local_url('openidlogin'); common_element_start('form', array('method' => 'POST', 'id' => 'openidlogin', |