]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/openidsettings.php
need a profileurl for new users
[quix0rs-gnu-social.git] / actions / openidsettings.php
index 742ef2757bdab35bca387f7b03a2a90c07501bb3..7c12bd4429bd11d6ff3997e61f789b1164ceb826 100644 (file)
@@ -24,18 +24,27 @@ 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.'));
                }
+               
+               $this->settings_menu();
+       }
+       
+       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' =>
@@ -122,7 +131,7 @@ class OpenidsettingsAction extends SettingsAction {
                        return;
                }
                $oid->delete();
-               $this->show_form(_t('OpenID removed.', true));
+               $this->show_form(_t('OpenID removed.'), true);
                return;
        }
 }
\ No newline at end of file