summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-06-08 05:12:15 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-06-08 05:12:15 +0000
commitb9ed1bc6e64fe82019c92cb582feb0b396dc96a7 (patch)
tree0bed901f36699a24a2b66dd623e5d1b715f58aaf
parent18428ae91fc9350f265b02430a7d804032ee93ff (diff)
downloadbrdo-b9ed1bc6e64fe82019c92cb582feb0b396dc96a7.tar.gz
brdo-b9ed1bc6e64fe82019c92cb582feb0b396dc96a7.tar.bz2
#484828 by Mike Wacker: Fix permission capitalization in help text.
-rw-r--r--modules/comment/comment.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index 212321afd..1e77fff79 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -610,7 +610,7 @@ function comment_form_alter(&$form, $form_state, $form_id) {
COMMENT_NODE_OPEN => array(
'#type' => 'radio',
'#title' => t('Open'),
- '#description' => theme('indentation') . t("Users with 'post comments' permission can post comments."),
+ '#description' => theme('indentation') . t('Users with the "Post comments" permission can post comments.'),
'#return_value' => COMMENT_NODE_OPEN,
'#default_value' => $comment_settings,
'#id' => 'edit-comment-2',