From d6e62eea211f3334e29d32ac38ff3f0cf811ba66 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 10 Feb 2007 13:31:32 +0000 Subject: - Patch #111537 by jpetso: submit buttons lack weight. --- modules/node/content_types.inc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'modules') 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, ); } -- cgit v1.2.3