From 1bf068ed63498d774d23670b54e4043525fa6df6 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Sun, 3 Jan 2010 00:45:51 +0000 Subject: #664022 by casey and Bojhan: Remove Identification fieldset from term add. --- modules/taxonomy/taxonomy.admin.inc | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'modules/taxonomy') diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc index cdb02bacc..44a7afeeb 100644 --- a/modules/taxonomy/taxonomy.admin.inc +++ b/modules/taxonomy/taxonomy.admin.inc @@ -638,18 +638,13 @@ function taxonomy_form_term($form, &$form_state, $edit = array(), $vocabulary = return array_merge($form, taxonomy_term_confirm_parents($form, $form_state, $vocabulary)); } - $form['identification'] = array( - '#type' => 'fieldset', - '#title' => t('Identification'), - '#collapsible' => TRUE, - ); - $form['identification']['name'] = array( + $form['name'] = array( '#type' => 'textfield', '#title' => t('Term name'), '#default_value' => $edit['name'], '#maxlength' => 255, '#required' => TRUE); - $form['identification']['description'] = array( + $form['description'] = array( '#type' => 'textarea', '#title' => t('Description'), '#default_value' => $edit['description'], -- cgit v1.2.3