--- taxonomy.module 2005-09-12 14:40:23.000000000 -0400 +++ newtaxonomy.module 2005-09-12 14:29:19.000000000 -0400 @@ -397,7 +397,7 @@ function taxonomy_overview() { foreach ($tree as $term) { $total_entries++; // we're counting all-totals, not displayed if (($start_from && ($start_from * $page_increment) >= $total_entries) || ($displayed_count == $page_increment)) { continue; } - $rows[] = array(_taxonomy_depth($term->depth) . ' ' . check_plain($term->name), l(t('edit'), "admin/taxonomy/edit/term/$term->tid", array(), $destination)); + $rows[] = array(_taxonomy_depth($term->depth) . ' ' . l(check_plain($term->name), "taxonomy/term/$tid"), l(t('edit'), "admin/taxonomy/edit/term/$term->tid", array(), $destination)); $displayed_count++; // we're counting tids displayed }