--- taxonomy.admin.inc.orig 2009-06-27 14:04:11.000000000 +0200 +++ taxonomy.admin.inc 2009-06-27 16:52:54.000000000 +0200 @@ -728,14 +728,14 @@ $form['advanced'] = array( '#type' => 'fieldset', - '#title' => t('Advanced options'), + '#title' => t('Relationships'), '#collapsible' => TRUE, '#collapsed' => $vocabulary->hierarchy < 2, ); $form['advanced']['intro'] = array( '#type' => 'item', '#weight' => 0, - '#markup' => t("Terms can have a relationship with other terms. The relationship might be parent-child ('parent'), associative ('related') or equivalent ('synonym'). You need third-party modules to display or search the relationship."), + '#markup' => t("Terms can have a relationship with other terms. The relationship might be parent-child ('parent'), associative ('related') or equivalent ('synonym'). You need to install a third-party module to make use of these relationships on your website."), ); // taxonomy_get_tree and taxonomy_get_parents may contain large numbers of @@ -752,16 +752,16 @@ } $exclude[] = $edit['tid']; - $form['advanced']['parent'] = _taxonomy_term_select(t('Parents'), $parent, $vocabulary->vid, t("Drupal won't make use of parent terms without a third party module."), 1, '<' . t('root') . '>', $exclude); + $form['advanced']['parent'] = _taxonomy_term_select(t('Parents'), $parent, $vocabulary->vid, NULL, 1, '<' . t('root') . '>', $exclude); $form['advanced']['parent']['#weight'] = 1; - $form['advanced']['relations'] = _taxonomy_term_select(t('Related terms'), array_keys(taxonomy_get_related($edit['tid'])), $vocabulary->vid, t("Drupal won't make use of hierarchical relationships without a third party module."), 1, '<' . t('none') . '>', array($edit['tid'])); + $form['advanced']['relations'] = _taxonomy_term_select(t('Related terms'), array_keys(taxonomy_get_related($edit['tid'])), $vocabulary->vid, NULL, 1, '<' . t('none') . '>', array($edit['tid'])); $form['advanced']['relations']['#weight'] = 2; } $form['advanced']['synonyms'] = array( '#type' => 'textarea', '#title' => t('Synonyms'), '#default_value' => implode("\n", taxonomy_get_synonyms($edit['tid'])), - '#description' => t("Synonyms of this term, one synonym per line. Drupal won't make use of hierarchical relationships without a third party module."), + '#description' => t("Synonyms of this term, one synonym per line."), '#weight' => 3, ); $form['advanced']['weight'] = array(