summaryrefslogtreecommitdiff
path: root/modules/comment
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-12-15 16:24:40 +0000
committerDries Buytaert <dries@buytaert.net>2005-12-15 16:24:40 +0000
commit922a46d28159737a61602876b961147f46428267 (patch)
tree395569ef52362721e2975658ca8a7362475d73c6 /modules/comment
parent5accfa08f52a31da74715c38a1d7a12793fa33c7 (diff)
downloadbrdo-922a46d28159737a61602876b961147f46428267.tar.gz
brdo-922a46d28159737a61602876b961147f46428267.tar.bz2
- Patch #34920 by Morbus/webchick/tangent: fixed order of form fields.
Diffstat (limited to 'modules/comment')
-rw-r--r--modules/comment/comment.module3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index b4a5cdbd4..5b62a852e 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -241,9 +241,10 @@ function comment_form_alter($form_id, &$form) {
$selected = isset($node->comment) ? $node->comment : variable_get("comment_$node->type", COMMENT_NODE_READ_WRITE);
$form['user_comments'] = array(
'#type' => 'fieldset',
- '#title' => t('User Comments'),
+ '#title' => t('User comments'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
+ '#weight' => 30,
);
$form['user_comments']['comment'] = array(
'#type' => 'radios',