diff options
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 f5da756cf..832c5e979 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -281,7 +281,7 @@ function comment_post($edit) { ** Validate the comment's body. */ - if ($edit["comment"] == "") { + if ($edit['comment'] == '') { return array(t("Empty comment"), t("The comment you submitted is empty.")); } |