summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/node/content_types.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc
index b51cac15d..7b2c55b95 100644
--- a/modules/node/content_types.inc
+++ b/modules/node/content_types.inc
@@ -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,
);
}