#154469 follow up patch by pwolanin: fix parameter order in menu_tree_collect_node_links() call

6.x
Gábor Hojtsy 2007-07-17 06:13:34 +00:00
parent 6f61409874
commit 306d3b150b
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}
}