- Patch #834848 by Berdir: warning message regarding hook_update_last_removed() is not displayed.

8.0.x
Dries Buytaert 2011-05-13 21:43:51 -04:00
parent daf1a12aec
commit b9bcbf8c63
1 changed files with 4 additions and 3 deletions

View File

@ -56,9 +56,10 @@ function update_script_selection_form($form, &$form_state) {
foreach ($updates as $module => $update) {
if (!isset($update['start'])) {
$form['start'][$module] = array(
'#title' => $module,
'#item' => $update['warning'],
'#prefix' => '<div class="warning">',
'#type' => 'item',
'#title' => $module . ' module',
'#markup' => $update['warning'],
'#prefix' => '<div class="messages warning">',
'#suffix' => '</div>',
);
$incompatible_updates_exist = TRUE;