diff --git a/core/modules/aggregator/aggregator.install b/core/modules/aggregator/aggregator.install index 2b755e1..66b53f3 100644 --- a/core/modules/aggregator/aggregator.install +++ b/core/modules/aggregator/aggregator.install @@ -16,9 +16,9 @@ function aggregator_requirements($phase) { 'title' => t('cURL'), 'value' => $has_curl ? t('Enabled') : t('Not found'), ); - if (!$has_curl) { + if ($has_curl) { $requirements['curl']['severity'] = REQUIREMENT_ERROR; - $requirements['curl']['description'] = t('The Aggregator module could not be installed because the PHP cURL library is not available.', array('@curl_url' => 'http://php.net/manual/curl.setup.php')); + $requirements['curl']['description'] = t('Requirements 1 render array with markup! Requirements 1 first item Requirements 1 second item'); } return $requirements; }