Issue #2110305 by emma.maria: Update.php continue button not styled properly.

8.0.x
Alex Pott 2013-11-07 23:14:33 +00:00
parent ad0a71a7ad
commit 99b9a851f5
1 changed files with 2 additions and 1 deletions

View File

@ -159,6 +159,7 @@ function update_script_selection_form($form, &$form_state) {
$form['actions']['submit'] = array(
'#type' => 'submit',
'#value' => 'Apply pending updates',
'#button_type' => 'primary',
);
}
return $form;
@ -310,7 +311,7 @@ function update_info_page() {
$output .= "</ol>\n";
$output .= "<p>When you have performed the steps above, you may proceed.</p>\n";
$form_action = check_url(drupal_current_script_url(array('op' => 'selection', 'token' => $token)));
$output .= '<form method="post" action="' . $form_action . '"><p><input type="submit" value="Continue" class="form-submit" /></p></form>';
$output .= '<form method="post" action="' . $form_action . '"><p><input type="submit" value="Continue" class="form-submit button button-primary" /></p></form>';
$output .= "\n";
return $output;
}