From 076002833cbb16e9214b3b72c6d020c7f067aa6f Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 22 Jul 2010 23:41:51 +0000 Subject: - Patch #601912 by sun: remove account fieldset on user account form. --- modules/user/user.module | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'modules/user/user.module') diff --git a/modules/user/user.module b/modules/user/user.module index 3b3c6b2b4..3fe86b4e2 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -960,8 +960,6 @@ function user_account_form(&$form, &$form_state) { // Account information. $form['account'] = array( - '#type' => 'fieldset', - '#title' => t('Account information'), '#weight' => -10, ); // Only show name field on registration form or user can change own username. @@ -3476,8 +3474,6 @@ function user_register_form($form, &$form_state) { $form['#attached']['library'][] = array('system', 'cookie'); $form['#attributes']['class'][] = 'user-info-from-cookie'; - $form['#pre_render'] = array('user_register_form_pre_render'); - // Start with the default user account fields. user_account_form($form, $form_state); @@ -3499,20 +3495,6 @@ function user_register_form($form, &$form_state) { return $form; } -/** - * Form pre-render callback to clean up the user_register_form. - * - * If the "account" fieldset is the only element at the top level (apart from - * the submit button), its borders are hidden for aesthetic reasons. - */ -function user_register_form_pre_render($form) { - $visible_children = element_get_visible_children($form); - if (!count(array_diff($visible_children, array('account', 'submit')))) { - $form['account']['#theme_wrappers'] = array(); - } - return $form; -} - /** * Submit handler for the user registration form. * -- cgit v1.2.3