From 275fc6bdb2d6d48f9ada7580d4450af06fab43b9 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 22 Dec 2009 14:01:05 +0000 Subject: - Patch #664012 by Bojhan, Dries: removed unnecessary fieldset. --- modules/node/content_types.inc | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'modules') diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc index eb3688e98..c10eb90c9 100644 --- a/modules/node/content_types.inc +++ b/modules/node/content_types.inc @@ -76,11 +76,7 @@ function node_type_form($form, &$form_state, $type = NULL) { // Make the type object available to implementations of hook_form_alter. $form['#node_type'] = $type; - $form['identity'] = array( - '#type' => 'fieldset', - '#title' => t('Identification'), - ); - $form['identity']['name'] = array( + $form['name'] = array( '#title' => t('Name'), '#type' => 'textfield', '#default_value' => $type->name, @@ -104,7 +100,7 @@ function node_type_form($form, &$form_state, $type = NULL) { ), ), ); - $form['identity']['type'] = array( + $form['type'] = array( '#title' => t('Machine name'), '#type' => 'textfield', '#default_value' => $type->type, @@ -117,13 +113,13 @@ function node_type_form($form, &$form_state, $type = NULL) { ); } else { - $form['identity']['type'] = array( + $form['type'] = array( '#type' => 'value', '#value' => $type->type, ); } - $form['identity']['description'] = array( + $form['description'] = array( '#title' => t('Description'), '#type' => 'textarea', '#default_value' => $type->description, -- cgit v1.2.3