#200856 by Pancho: warning level requirement problems deserve a warning message not just a status message in update module

6.x
Gábor Hojtsy 2007-12-14 10:54:28 +00:00
parent 20e652246f
commit b2dd7765a6
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ function update_help($path, $arg) {
drupal_set_message($status[$type]['description'], 'error'); drupal_set_message($status[$type]['description'], 'error');
} }
elseif ($status[$type]['severity'] == REQUIREMENT_WARNING) { elseif ($status[$type]['severity'] == REQUIREMENT_WARNING) {
drupal_set_message($status[$type]['description']); drupal_set_message($status[$type]['description'], 'warning');
} }
} }
} }