From 102175db608fa61055993621f68063ce2daeef91 Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Sun, 23 Oct 2016 15:27:11 -0700
Subject: [PATCH] =?UTF-8?q?Issue=20#2474017=20by=20pguillard,=20Cameron=20?=
 =?UTF-8?q?Tod,=20subhojit777,=20BQari,=20casivaagustin,=20colorfield,=20e?=
 =?UTF-8?q?vgeny.chernyavskiy,=20wingmanjd,=20darol100,=20ifrik,=20jhodgdo?=
 =?UTF-8?q?n,=20joshi.rohit100,=20G=C3=A1bor=20Hojtsy,=20catch:=20Improve?=
 =?UTF-8?q?=20module=20description=20and=20error=20message=20about=20missi?=
 =?UTF-8?q?ng=20Curl=20library?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 core/modules/aggregator/aggregator.install | 2 +-
 core/modules/simpletest/simpletest.install | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/modules/aggregator/aggregator.install b/core/modules/aggregator/aggregator.install
index e236628953d5..cd7203f17d15 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 could not be installed because the PHP <a href="http://php.net/manual/curl.setup.php">cURL</a> library is not available.');
+    $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>.');
   }
   return $requirements;
 }
diff --git a/core/modules/simpletest/simpletest.install b/core/modules/simpletest/simpletest.install
index 0e3cd00d5fc0..9b3ad90b01b6 100644
--- a/core/modules/simpletest/simpletest.install
+++ b/core/modules/simpletest/simpletest.install
@@ -37,7 +37,7 @@ function simpletest_requirements($phase) {
   );
   if (!$has_curl) {
     $requirements['curl']['severity'] = REQUIREMENT_ERROR;
-    $requirements['curl']['description'] = t('The testing framework could not be installed because the PHP <a href="http://php.net/manual/curl.setup.php">cURL</a> library is not available.');
+    $requirements['curl']['description'] = t('The testing framework 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>.');
   }
 
   // SimpleTest currently needs 2 cURL options which are incompatible with
-- 
GitLab