diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Form/OverviewTerms.php b/core/modules/taxonomy/lib/Drupal/taxonomy/Form/OverviewTerms.php index 5b2440f..0ca53a7 100644 --- a/core/modules/taxonomy/lib/Drupal/taxonomy/Form/OverviewTerms.php +++ b/core/modules/taxonomy/lib/Drupal/taxonomy/Form/OverviewTerms.php @@ -232,7 +232,6 @@ public function buildForm(array $form, array &$form_state, Vocabulary $taxonomy_ ), ); foreach ($current_page as $key => $term) { - $uri = $term->uri(); $form['terms'][$key]['#term'] = $term; $indentation = array(); if (isset($term->depth) && $term->depth > 0) { @@ -245,7 +244,7 @@ public function buildForm(array $form, array &$form_state, Vocabulary $taxonomy_ '#prefix' => !empty($indentation) ? drupal_render($indentation) : '', '#type' => 'link', '#title' => $term->label(), - '#href' => url($uri['path'], $uri['options']), + '#href' => 'taxonomy/term/' . $term->id(), ); if ($taxonomy_vocabulary->hierarchy != TAXONOMY_HIERARCHY_MULTIPLE && count($tree) > 1) { $parent_fields = TRUE;