diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/install.core.inc | 8 | ||||
-rw-r--r-- | includes/install.inc | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/includes/install.core.inc b/includes/install.core.inc index 7c4bc1057..f67d790ca 100644 --- a/includes/install.core.inc +++ b/includes/install.core.inc @@ -741,9 +741,13 @@ function install_verify_requirements(&$install_state) { function install_system_module(&$install_state) { // Install system.module. drupal_install_system(); + + // Enable the user module so that sessions can be recorded during the + // upcoming bootstrap step. + module_enable(array('user'), FALSE); + // Save the list of other modules to install for the upcoming tasks. - // variable_set() can be used now that system.module is installed and - // Drupal is bootstrapped. + // variable_set() can be used now that system.module is installed. $modules = $install_state['profile_info']['dependencies']; // The install profile is also a module, which needs to be installed diff --git a/includes/install.inc b/includes/install.inc index 17225f562..577724c0a 100644 --- a/includes/install.inc +++ b/includes/install.inc @@ -589,8 +589,6 @@ function drupal_install_system() { 'bootstrap' => 0, )) ->execute(); - // Now that we've installed things properly, bootstrap the full Drupal environment - drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); system_rebuild_module_data(); } |