aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio <silvio@socioambiental.org>2013-01-08 14:36:33 -0200
committerSilvio <silvio@socioambiental.org>2013-01-08 14:36:33 -0200
commit4f1619374b6001f62b4b198f79ec72fee5461c7f (patch)
treed8b9b4ece3f2a8b42dee1fe9753d38fdeb5c1242
parent56f024dd8557dfff7c5c30de0c7ef60627d6dcf2 (diff)
downloadtaxonomy_node_tree-4f1619374b6001f62b4b198f79ec72fee5461c7f.tar.gz
taxonomy_node_tree-4f1619374b6001f62b4b198f79ec72fee5461c7f.tar.bz2
Removing some deprecated syntax
-rw-r--r--taxonomy_node_tree.module2
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"));