Index: modules/node/content_types.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/content_types.inc,v
retrieving revision 1.105
diff -u -r1.105 content_types.inc
--- modules/node/content_types.inc	4 Dec 2009 16:49:46 -0000	1.105
+++ modules/node/content_types.inc	21 Dec 2009 21:46:37 -0000
@@ -76,11 +76,7 @@
   // 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 @@
         ),
       ),
     );
-    $form['identity']['type'] = array(
+    $form['type'] = array(
       '#title' => t('Machine name'),
       '#type' => 'textfield',
       '#default_value' => $type->type,
@@ -117,13 +113,13 @@
     );
   }
   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,
