#851348 by mr.baileys: Fixed Fix doc: menu_tree() returns a renderable array, not rendered HTML.

merge-requests/26/head
Angie Byron 2010-08-05 07:56:50 +00:00
parent 9874567891
commit 769f186755
1 changed files with 3 additions and 2 deletions

View File

@ -865,7 +865,7 @@ function menu_get_object($type = 'node', $position = 1, $path = NULL) {
}
/**
* Render a menu tree based on the current path.
* Renders a menu tree based on the current path.
*
* The tree is expanded based on the current path and dynamic paths are also
* changed according to the defined to_arg functions (for example the 'My
@ -875,7 +875,8 @@ function menu_get_object($type = 'node', $position = 1, $path = NULL) {
* The name of the menu.
*
* @return
* The rendered HTML of that menu on the current page.
* A structured array representing the specified menu on the current page, to
* be rendered by drupal_render().
*/
function menu_tree($menu_name) {
$menu_output = &drupal_static(__FUNCTION__, array());