diff options
-rw-r--r-- | taxonomy_node_tree.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/taxonomy_node_tree.module b/taxonomy_node_tree.module index c344e82..66fb20c 100644 --- a/taxonomy_node_tree.module +++ b/taxonomy_node_tree.module @@ -236,7 +236,7 @@ function taxonomy_node_tree_list($term, $id, $class, $baselink = NULL, &$level = $output .= '<ul id="' . $id .'-ul-'. $level .'" class="'. $class .'">'; foreach ($term->nodes as $node) { $node = node_load($node->nid); - path_nodeapi(&$node,'load',''); + path_nodeapi($node,'load',''); //drupal_get_path_alias(request_uri()) $output .= '<li class="'.($node->nid === arg(1)?$active_link:'item') .'">'; $output .= ($node->path?l($node->title,$node->path):l($node->title, "$baselink/$node->nid")); |