diff options
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/install.php b/install.php index 3b190db3d..ed1636af6 100644 --- a/install.php +++ b/install.php @@ -62,7 +62,8 @@ function install_main() { } // Perform actual installation defined in the profile. - drupal_install_profile($profile); + $modules = drupal_verify_profile($profile); + drupal_install_profile($profile, $modules); // Warn about settings.php permissions risk $settings_file = './'. conf_path() .'/settings.php'; |