Skip to content
Snippets Groups Projects
Commit 73b7dae0 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #1231856 follow-up by marcingy: Fixed menu_update_7001() breaks if block module disabled.

parent 7cba1fde
No related branches found
No related tags found
No related merge requests found
......@@ -166,18 +166,21 @@ function menu_update_7001() {
* Rename the primary/secondary menu blocks to match previously renamed menus.
*/
function menu_update_7002(&$sandbox) {
$renamed_deltas = array(
'menu' => array(
'primary-links' => 'main-menu',
'secondary-links' => 'secondary-menu',
),
);
// Check for the presence of old or new table names.
if (db_table_exists('blocks') || db_table_exists('block')) {
$renamed_deltas = array(
'menu' => array(
'primary-links' => 'main-menu',
'secondary-links' => 'secondary-menu',
),
);
$moved_deltas = array(
'menu' => array('main-menu' => 'system'),
);
$moved_deltas = array(
'menu' => array('main-menu' => 'system'),
);
update_fix_d7_block_deltas($sandbox, $renamed_deltas, $moved_deltas);
update_fix_d7_block_deltas($sandbox, $renamed_deltas, $moved_deltas);
}
}
/**
* @} End of "defgroup updates-7.x-extra"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment