- Patch #800696 by David_Rothstein: reenabling a module causes the module's links to be incorrectly mixed with custom menu links.

merge-requests/26/head
Dries Buytaert 2010-05-17 18:47:25 +00:00
parent 1c9b84ad39
commit 80f911c969
1 changed files with 1 additions and 1 deletions

View File

@ -3145,7 +3145,7 @@ function _menu_router_build($callbacks) {
// previous iteration assigned one already), try to find the menu name
// of the parent item in the currently stored menu links.
if (!isset($parent['menu_name'])) {
$menu_name = db_query("SELECT menu_name FROM {menu_links} WHERE router_path = :router_path", array(':router_path' => $parent_path))->fetchField();
$menu_name = db_query("SELECT menu_name FROM {menu_links} WHERE router_path = :router_path AND module = 'system'", array(':router_path' => $parent_path))->fetchField();
if ($menu_name) {
$parent['menu_name'] = $menu_name;
}