summaryrefslogtreecommitdiff
path: root/modules/update/update.module
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-04-29 03:57:21 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-04-29 03:57:21 +0000
commita703b3ee8ae84ccdb9023492f93b8ea5a0fb9cf7 (patch)
tree24c68a942da1debc9bb7d6d1fb917684e1959d78 /modules/update/update.module
parentde7635bf833e8df844fa728d0c93b9ff5b0daa81 (diff)
downloadbrdo-a703b3ee8ae84ccdb9023492f93b8ea5a0fb9cf7.tar.gz
brdo-a703b3ee8ae84ccdb9023492f93b8ea5a0fb9cf7.tar.bz2
#431148 by pwolanin: Make it easier to visually distinguish between security updates and regular updates.
Diffstat (limited to 'modules/update/update.module')
-rw-r--r--modules/update/update.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/update/update.module b/modules/update/update.module
index d103f0431..6ed91d621 100644
--- a/modules/update/update.module
+++ b/modules/update/update.module
@@ -254,7 +254,7 @@ function _update_requirement_check($project, $type) {
break;
case UPDATE_NOT_CURRENT:
$requirement_label = t('Out of date');
- $requirement['severity'] = variable_get('update_notification_threshold', 'all') == 'all' ? REQUIREMENT_ERROR : REQUIREMENT_WARNING;
+ $requirement['severity'] = REQUIREMENT_WARNING;
break;
case UPDATE_UNKNOWN:
case UPDATE_NOT_CHECKED: