summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-08-14 12:59:05 +0000
committerDries Buytaert <dries@buytaert.net>2008-08-14 12:59:05 +0000
commit77375441e5a16afb458a57aff88cf2011ba68cba (patch)
treebe6ff0a237bad583469e4d7f0772103842441261
parent0d789742831e89832ea46c7dfeef898822f89012 (diff)
downloadbrdo-77375441e5a16afb458a57aff88cf2011ba68cba.tar.gz
brdo-77375441e5a16afb458a57aff88cf2011ba68cba.tar.bz2
- Patch #221230 by Heine: convert requirement error on update to requirement warning.
-rw-r--r--modules/system/system.install2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index 12410bc3a..91a1c23f1 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -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'))),
);
}