From 22f7f46f7bb4575cc10126002ec7649dbc60501a Mon Sep 17 00:00:00 2001 From: catch Date: Mon, 21 Dec 2020 10:00:43 +0000 Subject: [PATCH] Issue #3002983 by sahal_va, quietone, subson, alexpott: Convert http links to https at system module --- core/modules/system/system.install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/system/system.install b/core/modules/system/system.install index 82423558d0f..e4cb7cef7c0 100644 --- a/core/modules/system/system.install +++ b/core/modules/system/system.install @@ -161,7 +161,7 @@ function system_requirements($phase) { 'title' => t('Apache version'), 'value' => $apache_version_string, 'severity' => REQUIREMENT_ERROR, - 'description' => t('The minimum version of Apache needed to run Drupal without mod_rewrite enabled is 2.2.16. See the enabling clean URLs page for more information on mod_rewrite.', [':link' => 'http://drupal.org/docs/8/clean-urls-in-drupal-8']), + 'description' => t('The minimum version of Apache needed to run Drupal without mod_rewrite enabled is 2.2.16. See the enabling clean URLs page for more information on mod_rewrite.', [':link' => 'https://www.drupal.org/docs/8/clean-urls-in-drupal-8']), ]; } @@ -170,7 +170,7 @@ function system_requirements($phase) { 'title' => t('Clean URLs'), 'value' => t('Disabled'), 'severity' => REQUIREMENT_WARNING, - 'description' => t('Your server is capable of using clean URLs, but it is not enabled. Using clean URLs gives an improved user experience and is recommended. Enable clean URLs', [':link' => 'http://drupal.org/docs/8/clean-urls-in-drupal-8']), + 'description' => t('Your server is capable of using clean URLs, but it is not enabled. Using clean URLs gives an improved user experience and is recommended. Enable clean URLs', [':link' => 'https://www.drupal.org/docs/8/clean-urls-in-drupal-8']), ]; } }