diff options
Diffstat (limited to 'includes/install.inc')
-rw-r--r-- | includes/install.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/install.inc b/includes/install.inc index 5f296477b..03ee3e4bd 100644 --- a/includes/install.inc +++ b/includes/install.inc @@ -495,7 +495,7 @@ function drupal_verify_profile($profile, $locale) { * Normally just testing wants to set this to TRUE. */ function drupal_install_modules($module_list = array(), $disable_modules_installed_hook = FALSE) { - $files = module_rebuild_cache(); + $files = system_get_module_data(); $module_list = array_flip(array_values($module_list)); do { $moved = FALSE; @@ -592,7 +592,7 @@ function drupal_install_system() { ->execute(); // Now that we've installed things properly, bootstrap the full Drupal environment drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); - module_rebuild_cache(); + system_get_module_data(); } /** |