diff options
-rw-r--r-- | modules/node/content_types.inc | 12 |
1 files changed, 4 insertions, 8 deletions
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, |