diff --git a/update.php b/update.php index 3e41a7ceae0e168958e06e4132b128c3c13327ef..2e371710b1098592bfbb76f50bfa9d566d88ada3 100644 --- a/update.php +++ b/update.php @@ -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;