- Patch #221230 by Heine: convert requirement error on update to requirement warning.

merge-requests/26/head
Dries Buytaert 2008-08-14 12:59:05 +00:00
parent 0d78974283
commit 77375441e5
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ function system_requirements($phase) {
if (!module_exists('update')) {
$requirements['update status'] = array(
'value' => $t('Not enabled'),
'severity' => REQUIREMENT_ERROR,
'severity' => REQUIREMENT_WARNING,
'description' => $t('Update notifications are not enabled. It is <strong>highly recommended</strong> that you enable the update status module from the <a href="@module">module administration page</a> in order to stay up-to-date on new releases. For more information please read the <a href="@update">Update status handbook page</a>.', array('@update' => 'http://drupal.org/handbook/modules/update', '@module' => url('admin/build/modules'))),
);
}