summaryrefslogtreecommitdiff
path: root/includes/install.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/install.inc')
-rw-r--r--includes/install.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/install.inc b/includes/install.inc
index 08aa55154..be8bc8944 100644
--- a/includes/install.inc
+++ b/includes/install.inc
@@ -276,14 +276,14 @@ function drupal_install_profile($profile) {
// Get a list of modules required by this profile.
$function = $profile .'_profile_modules';
$module_list = $function();
-
+
// If anyone has added modules that we automatically install, filter them out.
$module_list = array_diff($module_list, $bootstrap_list);
// Verify that all required modules exist.
$bootstrap_modules = drupal_find_modules($bootstrap_list);
$profile_modules = drupal_find_modules($module_list);
-
+
// Install the essential system modules and bootstrap Drupal.
drupal_install_modules($bootstrap_list);
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);