From f90f7ff67136ae85ea2494e8656f8e5a7ffacb91 Mon Sep 17 00:00:00 2001
From: xjm <xjm@65776.no-reply.drupal.org>
Date: Fri, 23 Dec 2022 14:11:50 -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

---
 core/install.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/install.php b/core/install.php
index b8df4ae0dda2..88c1e36f6433 100644
--- a/core/install.php
+++ b/core/install.php
@@ -30,7 +30,7 @@
 // in the printed message to the user) whenever \Drupal::MINIMUM_PHP is
 // updated.
 if (version_compare(PHP_VERSION, '7.3.0') < 0) {
-  print 'Your PHP installation is too old. Drupal requires at least PHP 7.3.0. See <a href="http://php.net/supported-versions.php">PHP\'s version support documentation</a> and the <a href="https://www.drupal.org/docs/system-requirements/php-requirements">Drupal PHP requirements</a> page for more information.';
+  print 'Your PHP installation is too old. Refer to the <a href="https://www.drupal.org/docs/system-requirements/php-requirements">Drupal PHP requirements</a> for the currently recommended PHP version for this release. See <a href="https://php.net/supported-versions.php">PHP\'s version support documentation</a> for more information on PHP\'s own support schedule.';
   exit;
 }
 
-- 
GitLab