From 85cbb1be6e5914950bffb1cda764c6f0b9d71f7e Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 14 May 2005 21:40:42 +0000 Subject: - Modified patch #22878 by Junyor: made all terms on the taxonomy overview page links to the taxonomy term list page. --- modules/taxonomy.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/taxonomy.module') diff --git a/modules/taxonomy.module b/modules/taxonomy.module index 4e605f5c6..9b030145c 100644 --- a/modules/taxonomy.module +++ b/modules/taxonomy.module @@ -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($term->name, "taxonomy/term/$term->tid"), 'class' => 'term'), NULL, NULL, NULL, l(t('edit term'), "admin/taxonomy/edit/term/$term->tid")); } } else { -- cgit v1.2.3