Skip to content
Snippets Groups Projects
Commit d6e62eea authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #111537 by jpetso: submit buttons lack weight.

parent 7891439f
No related branches found
No related tags found
No related merge requests found
......@@ -194,6 +194,7 @@ function node_type_form($type = NULL) {
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Save content type'),
'#weight' => 40,
);
if ($type->custom) {
......@@ -201,6 +202,7 @@ function node_type_form($type = NULL) {
$form['delete'] = array(
'#type' => 'submit',
'#value' => t('Delete content type'),
'#weight' => 45,
);
}
}
......@@ -208,6 +210,7 @@ function node_type_form($type = NULL) {
$form['reset'] = array(
'#type' => 'submit',
'#value' => t('Reset to defaults'),
'#weight' => 50,
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment