diff --git a/modules/taxonomy.module b/modules/taxonomy.module index 8f3fe3f8048d69e9729b91448f67017143630f9d..6232976e03453459a2497b4fd55a687dc9a55404 100644 --- a/modules/taxonomy.module +++ b/modules/taxonomy.module @@ -545,7 +545,7 @@ function taxonomy_form_alter($form_id, &$form) { } } if (isset($form['taxonomy'])) { - $form['taxonomy'] = array_merge($form['taxonomy'], array('#type' => 'fieldset', '#title' => t('Categories'), '#collapsible' => TRUE, '#collapsed' => FALSE, '#tree' => TRUE, '#weight' => -3)); + $form['taxonomy'] += array('#type' => 'fieldset', '#title' => t('Categories'), '#collapsible' => TRUE, '#collapsed' => FALSE, '#tree' => TRUE, '#weight' => -3); } } } diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 8f3fe3f8048d69e9729b91448f67017143630f9d..6232976e03453459a2497b4fd55a687dc9a55404 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -545,7 +545,7 @@ function taxonomy_form_alter($form_id, &$form) { } } if (isset($form['taxonomy'])) { - $form['taxonomy'] = array_merge($form['taxonomy'], array('#type' => 'fieldset', '#title' => t('Categories'), '#collapsible' => TRUE, '#collapsed' => FALSE, '#tree' => TRUE, '#weight' => -3)); + $form['taxonomy'] += array('#type' => 'fieldset', '#title' => t('Categories'), '#collapsible' => TRUE, '#collapsed' => FALSE, '#tree' => TRUE, '#weight' => -3); } } }