From 2e9897254d0f272be0f141191b2b93824cad84c8 Mon Sep 17 00:00:00 2001 From: Steven Wittens <steven@10.no-reply.drupal.org> Date: Mon, 11 Sep 2006 10:53:19 +0000 Subject: [PATCH] #83229: Recover gracefully from old PHP versions in installer (best effort only) --- install.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/install.php b/install.php index be479fa6f953..73e166231e35 100644 --- a/install.php +++ b/install.php @@ -64,14 +64,15 @@ function install_main() { // Load the profile. require_once "./profiles/$profile/$profile.profile"; + // Check the installation requirements for Drupal and this profile. + install_check_requirements($profile); + // Change the settings.php information if verification failed earlier. + // Note: will trigger a redirect if database credentials change. if (!$verify) { install_change_settings($profile, $install_locale); } - // Check the installation requirements for Drupal and this profile. - install_check_requirements($profile); - // Perform actual installation defined in the profile. $modules = drupal_verify_profile($profile, $install_locale); drupal_install_profile($profile, $modules); -- GitLab