diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-06-08 05:12:15 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-06-08 05:12:15 +0000 |
commit | b9ed1bc6e64fe82019c92cb582feb0b396dc96a7 (patch) | |
tree | 0bed901f36699a24a2b66dd623e5d1b715f58aaf | |
parent | 18428ae91fc9350f265b02430a7d804032ee93ff (diff) | |
download | brdo-b9ed1bc6e64fe82019c92cb582feb0b396dc96a7.tar.gz brdo-b9ed1bc6e64fe82019c92cb582feb0b396dc96a7.tar.bz2 |
#484828 by Mike Wacker: Fix permission capitalization in help text.
-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 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', |