diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-09-11 13:45:23 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-09-11 13:45:23 +0000 |
commit | 841d5a0cf80965ba61b61c5c3e2f1938bcecdf3c (patch) | |
tree | 1fd530dfb92bb14bb61ecc7f922e9df904c87187 /modules/comment | |
parent | c054ce2c3f264524862e54f4ed5e25f25d01446a (diff) | |
download | brdo-841d5a0cf80965ba61b61c5c3e2f1938bcecdf3c.tar.gz brdo-841d5a0cf80965ba61b61c5c3e2f1938bcecdf3c.tar.bz2 |
- Bugfix: comment subject where not always enabled by default because the default value of comment_subject_field varies.
Diffstat (limited to 'modules/comment')
-rw-r--r-- | modules/comment/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 6289df15c..d3e9407a3 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -1409,7 +1409,7 @@ function theme_comment_form($edit, $title) { } // subject field: - if (variable_get('comment_subject_field', 0)) { + if (variable_get('comment_subject_field', 1)) { $form .= form_textfield(t('Subject'), 'subject', $edit['subject'], 50, 64); } |