Index: modules/node/node.pages.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.pages.inc,v
retrieving revision 1.45
diff -u -r1.45 node.pages.inc
--- modules/node/node.pages.inc	13 Oct 2008 00:33:03 -0000	1.45
+++ modules/node/node.pages.inc	28 Nov 2008 00:08:57 -0000
@@ -170,6 +170,16 @@
     );
   }
 
+  // Display the name of the node type on the form if we are editing.
+  if (!empty($node->nid)) {
+    $form['node_type'] = array(
+      '#type' => 'item',
+      '#title' => t('Content type'),
+      '#markup' => check_plain(node_get_types('name', $node->type)),
+      '#weight' => -6,
+    );
+  }
+
   // Node author information for administrators
   $form['author'] = array(
     '#type' => 'fieldset',
