Index: modules/taxonomy/taxonomy.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.module,v
retrieving revision 1.330.2.11
diff -u -p -r1.330.2.11 taxonomy.module
--- modules/taxonomy/taxonomy.module	12 Sep 2007 07:49:36 -0000	1.330.2.11
+++ modules/taxonomy/taxonomy.module	6 Nov 2007 20:52:07 -0000
@@ -421,10 +421,10 @@ function taxonomy_form_term($vocabulary_
     $exclude[] = $edit['tid'];
 
     if ($vocabulary->hierarchy == 1) {
-      $form['parent'] = _taxonomy_term_select(t('Parent'), 'parent', $parent, $vocabulary_id, l(t('Parent term'), 'admin/help/taxonomy', NULL, NULL, 'parent') .'.', 0, '<'. t('root') .'>', $exclude);
+      $form['parent'] = _taxonomy_term_select(t('Parent'), 'parent', $parent, $vocabulary_id, t('Parent term') .'.', 0, '<'. t('root') .'>', $exclude);
     }
     elseif ($vocabulary->hierarchy == 2) {
-      $form['parent'] = _taxonomy_term_select(t('Parents'), 'parent', $parent, $vocabulary_id, l(t('Parent terms'), 'admin/help/taxonomy', NULL, NULL, 'parent') .'.', 1, '<'. t('root') .'>', $exclude);
+      $form['parent'] = _taxonomy_term_select(t('Parents'), 'parent', $parent, $vocabulary_id, t('Parent terms') .'.', 1, '<'. t('root') .'>', $exclude);
     }
   }
 
@@ -436,7 +436,7 @@ function taxonomy_form_term($vocabulary_
     '#type' => 'textarea',
     '#title' => t('Synonyms'),
     '#default_value' => implode("\n", taxonomy_get_synonyms($edit['tid'])),
-    '#description' => t('<a href="@help-url">Synonyms</a> of this term, one synonym per line.', array('@help-url' => url('admin/help/taxonomy', NULL, NULL, 'synonyms'))));
+    '#description' => t('Synonyms of this term, one synonym per line.'));
   $form['weight'] = array(
     '#type' => 'weight',
     '#title' => t('Weight'),
