From ced9990edc4f344c60b499c2ec588b2259dc9bb7 Mon Sep 17 00:00:00 2001 From: xjm Date: Fri, 23 Dec 2022 14:03:07 -0600 Subject: [PATCH] Issue #3272275 by eelkeblok, smustgrave, xjm, ravi.shankar, quietone, sergiogsanchez: Decide what to say very early in the installer if the site is below the absolute minimum (cherry picked from commit 393596dceb371b54c293cbfa44396102f33746db) --- core/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/install.php b/core/install.php index 88ad39d857c..550665d73f1 100644 --- a/core/install.php +++ b/core/install.php @@ -30,7 +30,7 @@ define('MAINTENANCE_MODE', 'install'); // in the printed message to the user) whenever \Drupal::MINIMUM_PHP is // updated. if (version_compare(PHP_VERSION, '8.1.0') < 0) { - print 'Your PHP installation is too old. Drupal requires at least PHP 8.1.0. See PHP\'s version support documentation and the Drupal PHP requirements page for more information.'; + print 'Your PHP installation is too old. Refer to the Drupal PHP requirements for the currently recommended PHP version for this release. See PHP\'s version support documentation for more information on PHP\'s own support schedule.'; exit; }