diff --git a/includes/menu.inc b/includes/menu.inc index be222026b1d9683e7c7230ba7e28b60ea45ba6c6..3396476aa010a49b2d107f2b3e39d1d5e6c56eba 100644 --- a/includes/menu.inc +++ b/includes/menu.inc @@ -865,7 +865,7 @@ function menu_tree_all_data($menu_name, $item = NULL) { // If the tree data was not in the cache, $data will be NULL. if (!isset($data)) { // Build and run the query, and build the tree. - $query = db_select('menu_links', 'ml'); + $query = db_select('menu_links', 'ml', array('fetch' => PDO::FETCH_ASSOC)); $query->leftJoin('menu_router', 'm', 'm.path = ml.router_path'); $query->fields('ml'); $query->fields('m', array( @@ -1035,7 +1035,7 @@ function menu_tree_page_data($menu_name) { // Select the links from the table, and recursively build the tree. We // LEFT JOIN since there is no match in {menu_router} for an external // link. - $query = db_select('menu_links', 'ml'); + $query = db_select('menu_links', 'ml', array('fetch' => PDO::FETCH_ASSOC)); $query->leftJoin('menu_router', 'm', 'm.path = ml.router_path'); $query->fields('ml'); $query->fields('m', array( @@ -1188,7 +1188,6 @@ function _menu_tree_data($result, $parents, $depth, $previous_element = '') { $remnant = NULL; $tree = array(); foreach ($result as $item) { - $item = is_object($item) ? get_object_vars($item) : $item; // We need to determine if we're on the path to root so we can later build // the correct active trail and breadcrumb. $item['in_active_trail'] = in_array($item['mlid'], $parents); diff --git a/modules/book/book.module b/modules/book/book.module index 62fc55aaef4f5ab3201382fa55c6a5f3f42ea24e..af5b51e9d625a567d29d093625e5e9980b4dc70d 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -1177,7 +1177,7 @@ function book_menu_subtree_data($item) { // If the subtree data was not in the cache, $data will be NULL. if (!isset($data)) { - $query = db_select('menu_links', 'ml'); + $query = db_select('menu_links', 'ml', array('fetch' => PDO::FETCH_ASSOC)); $menu_router_alias = $query->join('menu_router', 'm', 'm.path = ml.router_path'); $book_alias = $query->join('book', 'b', 'ml.mlid = b.mlid'); $query->fields($book_alias);