summaryrefslogtreecommitdiff
path: root/modules/comment.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/comment.module')
-rw-r--r--modules/comment.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/comment.module b/modules/comment.module
index d50e34532..d4329c956 100644
--- a/modules/comment.module
+++ b/modules/comment.module
@@ -1435,12 +1435,12 @@ function theme_comment_form($edit, $title) {
$form .= form_textfield(t('Subject'), 'subject', $edit['subject'], 50, 64);
}
- // format selector
- $form .= filter_form('format', $edit['format']);
-
// comment field:
$form .= form_textarea(t('Comment'), 'comment', $edit['comment'] ? $edit['comment'] : $user->signature, 70, 10, '', NULL, TRUE);
+ // format selector
+ $form .= filter_form('format', $edit['format']);
+
// preview button:
$form .= form_hidden('cid', $edit['cid']);
$form .= form_hidden('pid', $edit['pid']);