summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-07-17 06:13:34 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-07-17 06:13:34 +0000
commit306d3b150b1ad18ce41fea6c8f22cf116ed650ce (patch)
treeaea51c253bf0de79bf486fc2947ab3bc9bef621c /includes
parent6f614098740c306a03c5d04f60b7f22d144ff488 (diff)
downloadbrdo-306d3b150b1ad18ce41fea6c8f22cf116ed650ce.tar.gz
brdo-306d3b150b1ad18ce41fea6c8f22cf116ed650ce.tar.bz2
#154469 follow up patch by pwolanin: fix parameter order in menu_tree_collect_node_links() call
Diffstat (limited to 'includes')
-rw-r--r--includes/menu.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/menu.inc b/includes/menu.inc
index 17c2e0d82..89a613e56 100644
--- a/includes/menu.inc
+++ b/includes/menu.inc
@@ -770,7 +770,7 @@ function menu_tree_collect_node_links(&$tree, &$node_links) {
}
}
if ($tree[$key]['below']) {
- menu_tree_collect_node_links($node_links, $tree[$key]['below']);
+ menu_tree_collect_node_links($tree[$key]['below'], $node_links);
}
}
}