--- taxonomy.module	2005-12-01 20:44:51.000000000 +0100
+++ taxonomy.module.orig	2005-11-21 08:15:37.000000000 +0100
@@ -530,14 +530,7 @@ function taxonomy_node_form($node) {
       }
       $typed_string = implode(', ', $typed_terms) . (array_key_exists('tags', $terms) ? $terms['tags'][$vocabulary->vid] : NULL);
 
-      if($vocabulary->help) {
-        $help = $vocabulary->help;
-      }
-      else {
-        $help = t('A comma-separated list of terms describing this content (Example: funny, bungie jumping, "Company, Inc.").');
-      }
-
-      $form['taxonomy']['tags'][$vocabulary->vid] = array('#type' => 'textfield', '#default_value' => $typed_string, '#maxlength' => 100, '#autocomplete_path' => 'taxonomy/autocomplete/'. $vocabulary->vid, '#required' => $vocabulary->required, '#title' => $vocabulary->name, '#description' => $help);
+      $form['taxonomy']['tags'][$vocabulary->vid] = array('#type' => 'textfield', '#default_value' => $typed_string, '#maxlength' => 100, '#autocomplete_path' => 'taxonomy/autocomplete/'. $vocabulary->vid, '#required' => $vocabulary->required, '#title' => $vocabulary->name, '#description' => t('A comma-separated list of terms describing this content (Example: funny, bungie jumping, "Company, Inc.").'));
     }
     else {
       $ntterms = array_key_exists('taxonomy', $node) ? $terms : array_keys($terms);
