Issue #3002983 by sahal_va, quietone, subson, alexpott: Convert http links to https at system module
parent
d61ce3017a
commit
22f7f46f7b
|
@ -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 <a href=":link">enabling clean URLs</a> 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 <a href=":link">enabling clean URLs</a> 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. <a href=":link">Enable clean URLs</a>', [':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. <a href=":link">Enable clean URLs</a>', [':link' => 'https://www.drupal.org/docs/8/clean-urls-in-drupal-8']),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue