From 23eaaf18a151cf92862a581d26ae574546d444a4 Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Mon, 3 Aug 2020 10:10:21 +0100
Subject: [PATCH] Issue #3120222 by ridhimaabrol24, jofitz, ravi.shankar,
 vsujeetkumar, Hardik_Patel_12, swatichouhan012, davidhernandez, Kristen Pol:
 Change System requirements URLs to new evergreen URLs

---
 core/INSTALL.txt                           | 3 ++-
 core/modules/aggregator/aggregator.install | 2 +-
 core/modules/system/system.install         | 8 ++++----
 core/modules/system/system.module          | 2 +-
 4 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/core/INSTALL.txt b/core/INSTALL.txt
index 910b5aaf1236..3ae63b882f14 100644
--- a/core/INSTALL.txt
+++ b/core/INSTALL.txt
@@ -61,7 +61,8 @@ Drupal requires:
 
 For more detailed information about Drupal requirements, including a list of
 PHP extensions and configurations that are required, see "System requirements"
-(https://www.drupal.org/requirements) in the Drupal.org online documentation.
+(https://www.drupal.org/docs/system-requirements) in the Drupal.org online
+documentation.
 
 For detailed information on how to configure a test server environment using a
 variety of operating systems and web servers, see "Local server setup"
diff --git a/core/modules/aggregator/aggregator.install b/core/modules/aggregator/aggregator.install
index ee23b29850a2..66d728335a48 100644
--- a/core/modules/aggregator/aggregator.install
+++ b/core/modules/aggregator/aggregator.install
@@ -17,7 +17,7 @@ function aggregator_requirements($phase) {
   ];
   if (!$has_curl) {
     $requirements['curl']['severity'] = REQUIREMENT_ERROR;
-    $requirements['curl']['description'] = t('The Aggregator module requires the <a href="https://secure.php.net/manual/en/curl.setup.php">PHP cURL library</a>. For more information, see the <a href="https://www.drupal.org/requirements/php/curl">online information on installing the PHP cURL extension</a>.');
+    $requirements['curl']['description'] = t('The Aggregator module requires the <a href="https://secure.php.net/manual/en/curl.setup.php">PHP cURL library</a>. For more information, see the <a href="https://www.drupal.org/docs/system-requirements/php-requirements#curl">online information on installing the PHP cURL extension</a>.');
   }
   return $requirements;
 }
diff --git a/core/modules/system/system.install b/core/modules/system/system.install
index a981accf37a8..66ac09793a75 100644
--- a/core/modules/system/system.install
+++ b/core/modules/system/system.install
@@ -269,7 +269,7 @@ function system_requirements($phase) {
 
   if (!empty($missing_extensions)) {
     $description = t('Drupal requires you to enable the PHP extensions in the following list (see the <a href=":system_requirements">system requirements page</a> for more information):', [
-      ':system_requirements' => 'https://www.drupal.org/requirements',
+      ':system_requirements' => 'https://www.drupal.org/docs/system-requirements',
     ]);
 
     // We use twig inline_template to avoid twig's autoescape.
@@ -396,7 +396,7 @@ function system_requirements($phase) {
     $database_ok = extension_loaded('pdo');
     if (!$database_ok) {
       $pdo_message = t('Your web server does not appear to support PDO (PHP Data Objects). Ask your hosting provider if they support the native PDO extension. See the <a href=":link">system requirements</a> page for more information.', [
-        ':link' => 'https://www.drupal.org/requirements/pdo',
+        ':link' => 'https://www.drupal.org/docs/system-requirements/php-requirements#database',
       ]);
     }
     else {
@@ -405,7 +405,7 @@ function system_requirements($phase) {
       if (empty($drivers)) {
         $database_ok = FALSE;
         $pdo_message = t('Your web server does not appear to support any common PDO database extensions. Check with your hosting provider to see if they support PDO (PHP Data Objects) and offer any databases that <a href=":drupal-databases">Drupal supports</a>.', [
-          ':drupal-databases' => 'https://www.drupal.org/requirements/database',
+          ':drupal-databases' => 'https://www.drupal.org/docs/system-requirements/database-server-requirements',
         ]);
       }
       // Make sure the native PDO extension is available, not the older PEAR
@@ -413,7 +413,7 @@ function system_requirements($phase) {
       if (!defined('PDO::ATTR_DEFAULT_FETCH_MODE')) {
         $database_ok = FALSE;
         $pdo_message = t('Your web server seems to have the wrong version of PDO installed. Drupal requires the PDO extension from PHP core. This system has the older PECL version. See the <a href=":link">system requirements</a> page for more information.', [
-          ':link' => 'https://www.drupal.org/requirements/pdo#pecl',
+          ':link' => 'https://www.drupal.org/docs/system-requirements/php-requirements#database',
         ]);
       }
     }
diff --git a/core/modules/system/system.module b/core/modules/system/system.module
index 7552c3221025..064afafbcedd 100644
--- a/core/modules/system/system.module
+++ b/core/modules/system/system.module
@@ -139,7 +139,7 @@ function system_help($route_name, RouteMatchInterface $route_match) {
       break;
 
     case 'system.status':
-      return '<p>' . t("Here you can find a short overview of your site's parameters as well as any problems detected with your installation. It may be useful to copy and paste this information into support requests filed on Drupal.org's support forums and project issue queues. Before filing a support request, ensure that your web server meets the <a href=\":system-requirements\">system requirements.</a>", [':system-requirements' => 'https://www.drupal.org/requirements']) . '</p>';
+      return '<p>' . t("Here you can find a short overview of your site's parameters as well as any problems detected with your installation. It may be useful to copy and paste this information into support requests filed on Drupal.org's support forums and project issue queues. Before filing a support request, ensure that your web server meets the <a href=\":system-requirements\">system requirements.</a>", [':system-requirements' => 'https://www.drupal.org/docs/system-requirements']) . '</p>';
   }
 }
 
-- 
GitLab