diff --git a/core/modules/system/system.module b/core/modules/system/system.module index 44db0a6..d5f5c2d 100644 --- a/core/modules/system/system.module +++ b/core/modules/system/system.module @@ -523,8 +523,6 @@ function system_element_info() { '#pre_render' => array('drupal_pre_render_link', 'drupal_pre_render_markup'), ); $types['fieldset'] = array( - '#collapsible' => FALSE, - '#collapsed' => FALSE, '#value' => NULL, '#process' => array('ajax_process_form'), '#theme_wrappers' => array('fieldset'), diff --git a/core/update.php b/core/update.php index 968e8f4..5941600 100644 --- a/core/update.php +++ b/core/update.php @@ -68,7 +68,7 @@ function update_script_selection_form($form, &$form_state) { $incompatible_count = 0; $form['start'] = array( '#tree' => TRUE, - '#type' => 'fieldset', + '#type' => 'details', '#collapsed' => TRUE, '#collapsible' => TRUE, );