From 03a08efce9bfe3be1673581594498b5d856d08b0 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 18 Jun 2008 15:02:02 -0400 Subject: move instructions to top in openid pages darcs-hash:20080618190202-84dde-20cc79646144076090c36fe25d78f2d0e399d5ad.gz --- actions/openidsettings.php | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'actions/openidsettings.php') diff --git a/actions/openidsettings.php b/actions/openidsettings.php index 742ef2757..aceb8023b 100644 --- a/actions/openidsettings.php +++ b/actions/openidsettings.php @@ -24,18 +24,25 @@ require_once(INSTALLDIR.'/lib/openid.php'); class OpenidsettingsAction extends SettingsAction { - function show_form($msg=NULL, $success=false) { - - $user = common_current_user(); + function show_top($arr) { + $msg = $arr[0]; + $success = $arr[1]; - common_show_header(_t('OpenID settings'), NULL, NULL, array($this, 'settings_menu')); - if ($msg) { $this->message($msg, $success); } else { common_element('div', 'instructions', _t('Manage your associated OpenIDs from here.')); } + } + + function show_form($msg=NULL, $success=false) { + + $user = common_current_user(); + + common_show_header(_t('OpenID settings'), NULL, array($msg, $success), + array($this, 'show_top')); + common_element_start('form', array('method' => 'POST', 'id' => 'openidadd', 'action' => -- cgit v1.2.3-54-g00ecf