Commit a442f49d authored by Chris Cook's avatar Chris Cook Committed by renatog
Browse files

Issue #2075659 by Feng-Shui, realityloop, acrollet, azinck, badrange, Alan...

Issue #2075659 by Feng-Shui, realityloop, acrollet, azinck, badrange, Alan Delval, joshua.boltz, umtj, DamienMcKenna, RenatoG: Broken site when Search module is disabled
parent fe77ba33
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -15,6 +15,15 @@ foreach (module_list() as $module) {
  }
}

/**
 * Implements hook_module_implements_alter().
 */
function page_manager_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'menu_alter') {
    unset($implementations['page_manager_search']);
  }
}

/**
 * Implements hook_entity_info().
 */