- Patch #800696 by David_Rothstein: reenabling a module causes the module's links to be incorrectly mixed with custom menu links.
parent
1c9b84ad39
commit
80f911c969
|
@ -3145,7 +3145,7 @@ function _menu_router_build($callbacks) {
|
||||||
// previous iteration assigned one already), try to find the menu name
|
// previous iteration assigned one already), try to find the menu name
|
||||||
// of the parent item in the currently stored menu links.
|
// of the parent item in the currently stored menu links.
|
||||||
if (!isset($parent['menu_name'])) {
|
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) {
|
if ($menu_name) {
|
||||||
$parent['menu_name'] = $menu_name;
|
$parent['menu_name'] = $menu_name;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue