diff --git a/modules/hs_menu.install b/modules/hs_menu.install index 2d79adf..40f315e 100644 --- a/modules/hs_menu.install +++ b/modules/hs_menu.install @@ -5,6 +5,16 @@ * Install file for the Hierarchical Select Menu module. */ +/** + * Implementation of hook_install(). + */ +function hs_menu_install() { + // Force preceding by menu.module + db_update('system') + ->fields(array('weight' => 1)) + ->condition('name', 'hs_menu') + ->execute(); +} /** * Implementation of hook_uninstall().