diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2002-05-20 18:52:21 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2002-05-20 18:52:21 +0000 |
commit | 037ad054751a256da31930e15ea09c5bc315ad63 (patch) | |
tree | 8280e1f51bba72f345bfceb599fac89ad836ecfd | |
parent | 367ae7a670c8a5ed0352d701401cd6294177dd13 (diff) | |
download | brdo-037ad054751a256da31930e15ea09c5bc315ad63.tar.gz brdo-037ad054751a256da31930e15ea09c5bc315ad63.tar.bz2 |
Forgot to use l() for the taxonomy links.
-rw-r--r-- | themes/goofy/goofy.theme | 2 | ||||
-rw-r--r-- | 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 653fcfd56..5df9772a9 100644 --- a/themes/goofy/goofy.theme +++ b/themes/goofy/goofy.theme @@ -120,7 +120,7 @@ function c(subject,mod,author,date,body) {document.writeln("<table border=\"0\" if ($terms = taxonomy_node_get_terms($node->nid)) { $taxlinks = array(); foreach ($terms as $term) { - $taxlinks[] = "<a href=\"index.php?or=$term->tid\">". check_output($term->name) ."</a>"; + $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 df6133576..45d7c5196 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[] = "<a href=\"index.php?or=$term->tid\">". check_output($term->name) ."</a>"; + $taxlinks[] = l($term->name, array("or" => $term->tid), "index"); } $taxo = $this->links($taxlinks); } |