summaryrefslogtreecommitdiff
path: root/includes/theme.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-01-06 21:43:07 +0000
committerDries Buytaert <dries@buytaert.net>2003-01-06 21:43:07 +0000
commit56d0434f82cc599a78d9d3b500f70d893314f6f8 (patch)
treed780ac34d2f7d42a188ddaea4ab8285848252937 /includes/theme.inc
parent2647a943f05eb640e4d6656aa9272d572d8130e0 (diff)
downloadbrdo-56d0434f82cc599a78d9d3b500f70d893314f6f8.tar.gz
brdo-56d0434f82cc599a78d9d3b500f70d893314f6f8.tar.bz2
- Fixed bug in update of taxonomy links.
Diffstat (limited to 'includes/theme.inc')
-rw-r--r--includes/theme.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index c851b3283..fbdb16531 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -42,7 +42,7 @@ class BaseTheme {
function node($node, $main) {
if (function_exists("taxonomy_node_get_terms")) {
foreach (taxonomy_node_get_terms($node->nid) as $term) {
- $terms[] = l($term->name, NULL, NULL, "or=$term->tid");
+ $terms[] = l($term->name, NULL, array(), "or=$term->tid");
}
}