From b9ed1bc6e64fe82019c92cb582feb0b396dc96a7 Mon Sep 17 00:00:00 2001 From: Angie Byron <webchick@24967.no-reply.drupal.org> Date: Mon, 8 Jun 2009 05:12:15 +0000 Subject: [PATCH] #484828 by Mike Wacker: Fix permission capitalization in help text. --- modules/comment/comment.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 212321afd0d1..1e77fff79729 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', -- GitLab