diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-01-06 21:24:21 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-01-06 21:24:21 +0000 |
commit | 2647a943f05eb640e4d6656aa9272d572d8130e0 (patch) | |
tree | 86692975511364dc047184fb6d8648a3ba996064 /themes | |
parent | a380356d6eb8cc7b8d749ec6f243feb22d1b8357 (diff) | |
download | brdo-2647a943f05eb640e4d6656aa9272d572d8130e0.tar.gz brdo-2647a943f05eb640e4d6656aa9272d572d8130e0.tar.bz2 |
- Forgot to update the taxonomy links. Reported by Adam.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/goofy/goofy.theme | 2 | ||||
-rw-r--r-- | themes/marvin/marvin.theme | 2 | ||||
-rw-r--r-- | themes/unconed/unconed.theme | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/themes/goofy/goofy.theme b/themes/goofy/goofy.theme index 91da5e2e1..68f727c93 100644 --- a/themes/goofy/goofy.theme +++ b/themes/goofy/goofy.theme @@ -121,7 +121,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[] = l($term->name, array("or" => $term->tid), "index"); + $taxlinks[] = l($term->name, NULL, NULL, "or=$term->tid"); } $subright = $this->links($taxlinks); } diff --git a/themes/marvin/marvin.theme b/themes/marvin/marvin.theme index 27c425b38..164ff80fd 100644 --- a/themes/marvin/marvin.theme +++ b/themes/marvin/marvin.theme @@ -88,7 +88,7 @@ if (function_exists("taxonomy_node_get_terms")) { foreach (taxonomy_node_get_terms($node->nid) as $term) { - $terms[] = l($term->name, array("or" => $term->tid), "index"); + $terms[] = l($term->name, NULL, array(), "or=$term->tid"); } } diff --git a/themes/unconed/unconed.theme b/themes/unconed/unconed.theme index 536907f07..74c050bab 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[] = l($term->name, array("or" => $term->tid), "index"); + $taxlinks[] = l($term->name, NULL, NULL, "or=$term->tid"); } $taxo = $this->links($taxlinks); } |