Issue #2110305 by emma.maria: Update.php continue button not styled properly.
parent
ad0a71a7ad
commit
99b9a851f5
|
@ -159,6 +159,7 @@ function update_script_selection_form($form, &$form_state) {
|
||||||
$form['actions']['submit'] = array(
|
$form['actions']['submit'] = array(
|
||||||
'#type' => 'submit',
|
'#type' => 'submit',
|
||||||
'#value' => 'Apply pending updates',
|
'#value' => 'Apply pending updates',
|
||||||
|
'#button_type' => 'primary',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return $form;
|
return $form;
|
||||||
|
@ -310,7 +311,7 @@ function update_info_page() {
|
||||||
$output .= "</ol>\n";
|
$output .= "</ol>\n";
|
||||||
$output .= "<p>When you have performed the steps above, you may proceed.</p>\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)));
|
$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";
|
$output .= "\n";
|
||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue