Index: modules/node/content_types.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/content_types.inc,v
retrieving revision 1.67
diff -u -p -r1.67 content_types.inc
--- modules/node/content_types.inc	26 Apr 2009 20:57:01 -0000	1.67
+++ modules/node/content_types.inc	4 May 2009 15:27:24 -0000
@@ -136,12 +136,6 @@ function node_type_form(&$form_state, $t
     '#options' => drupal_map_assoc(array(0, 1, 10, 25, 50, 75, 100, 125, 150, 175, 200)),
     '#description' => t('The minimum number of words for the body field to be considered valid for this content type. This can be useful to rule out submissions that do not meet the site\'s standards, such as short test posts.')
   );
-  $form['submission']['help']  = array(
-    '#type' => 'textarea',
-    '#title' => t('Explanation or submission guidelines'),
-    '#default_value' => $type->help,
-    '#description' => t('This text will be displayed at the top of the submission form for this content type. It is useful for helping or instructing your users.')
-  );
   $form['workflow'] = array(
     '#type' => 'fieldset',
     '#title' => t('Workflow settings'),
@@ -270,7 +264,6 @@ function node_type_form_submit($form, &$
   $type->old_type = isset($form_state['values']['old_type']) ? $form_state['values']['old_type'] : $type->type;
 
   $type->description = $form_state['values']['description'];
-  $type->help = $form_state['values']['help'];
   $type->min_word_count = $form_state['values']['min_word_count'];
   $type->title_label = $form_state['values']['title_label'];
   $type->body_label = $form_state['values']['body_label'];
Index: modules/node/node.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.install,v
retrieving revision 1.16
diff -u -p -r1.16 node.install
--- modules/node/node.install	25 Apr 2009 14:01:05 -0000	1.16
+++ modules/node/node.install	4 May 2009 15:27:24 -0000
@@ -269,12 +269,6 @@ function node_schema() {
         'not null' => TRUE,
         'size' => 'medium',
       ),
-      'help' => array(
-        'description' => 'Help information shown to the user when creating a {node} of this type.',
-        'type' => 'text',
-        'not null' => TRUE,
-        'size' => 'medium',
-      ),
       'has_title' => array(
         'description' => 'Boolean indicating whether this type uses the {node}.title field.',
         'type' => 'int',
Index: modules/node/node.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.module,v
retrieving revision 1.1044
diff -u -p -r1.1044 node.module
--- modules/node/node.module	3 May 2009 10:11:34 -0000	1.1044
+++ modules/node/node.module	4 May 2009 15:27:25 -0000
@@ -78,15 +78,6 @@ function node_help($path, $arg) {
       return '<p>' . t('To create a new content type, enter the human-readable name, the machine-readable name, and all other relevant fields that are on this page. Once created, users of your site will be able to create posts that are instances of this content type.') . '</p>';
     case 'node/%/revisions':
       return '<p>' . t('The revisions let you track differences between multiple versions of a post.') . '</p>';
-    case 'node/%/edit':
-      $node = node_load($arg[1]);
-      $type = node_get_types('type', $node->type);
-      return (!empty($type->help) ? '<p>' . filter_xss_admin($type->help) . '</p>' : '');
-  }
-
-  if ($arg[0] == 'node' && $arg[1] == 'add' && $arg[2]) {
-    $type = node_get_types('type', str_replace('-', '_', $arg[2]));
-    return (!empty($type->help) ? '<p>' . filter_xss_admin($type->help) . '</p>' : '');
   }
 }
 
@@ -573,7 +564,6 @@ function node_type_save($info) {
     'has_body' => (int) $type->has_body,
     'body_label' => (string) $type->body_label,
     'description' => (string) $type->description,
-    'help' => (string) $type->help,
     'min_word_count' => (int) $type->min_word_count,
     'custom' => (int) $type->custom,
     'modified' => (int) $type->modified,
@@ -706,7 +696,6 @@ function node_type_set_defaults($info = 
     $type->name = '';
     $type->base = '';
     $type->description = '';
-    $type->help = '';
     $type->min_word_count = 0;
     $type->has_title = 1;
     $type->has_body = 1;
