From 037ad054751a256da31930e15ea09c5bc315ad63 Mon Sep 17 00:00:00 2001 From: Steven Wittens Date: Mon, 20 May 2002 18:52:21 +0000 Subject: [PATCH] Forgot to use l() for the taxonomy links. --- themes/goofy/goofy.theme | 2 +- themes/unconed/unconed.theme | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/goofy/goofy.theme b/themes/goofy/goofy.theme index 653fcfd5638..5df9772a949 100644 --- a/themes/goofy/goofy.theme +++ b/themes/goofy/goofy.theme @@ -120,7 +120,7 @@ function c(subject,mod,author,date,body) {document.writeln("nid)) { $taxlinks = array(); foreach ($terms as $term) { - $taxlinks[] = "tid\">". check_output($term->name) .""; + $taxlinks[] = l($term->name, array("or" => $term->tid), "index"); } $subright = $this->links($taxlinks); } diff --git a/themes/unconed/unconed.theme b/themes/unconed/unconed.theme index df613357684..45d7c5196d3 100644 --- a/themes/unconed/unconed.theme +++ b/themes/unconed/unconed.theme @@ -105,7 +105,7 @@ if ($terms = taxonomy_node_get_terms($node->nid)) { $taxlinks = array(); foreach ($terms as $term) { - $taxlinks[] = "tid\">". check_output($term->name) .""; + $taxlinks[] = l($term->name, array("or" => $term->tid), "index"); } $taxo = $this->links($taxlinks); }