Index: taxonomy.module =================================================================== RCS file: /cvs/drupal/drupal/modules/taxonomy.module,v retrieving revision 1.200 diff -u -F^f -r1.200 taxonomy.module --- taxonomy.module 7 May 2005 01:48:06 -0000 1.200 +++ taxonomy.module 14 May 2005 19:50:23 -0000 @@ -375,7 +375,7 @@ function taxonomy_overview() { $tree = taxonomy_get_tree($vocabulary->vid); if ($tree) { foreach ($tree as $term) { - $rows[] = array(array('data' => _taxonomy_depth($term->depth) . ' ' . check_plain($term->name), 'class' => 'term'), NULL, NULL, NULL, l(t('edit term'), "admin/taxonomy/edit/term/$term->tid")); + $rows[] = array(array('data' => _taxonomy_depth($term->depth) . ' ' . l(check_plain($term->name), "taxonomy/term/$term->tid"), 'class' => 'term'), NULL, NULL, NULL, l(t('edit term'), "admin/taxonomy/edit/term/$term->tid")); } } else {