diff options
Diffstat (limited to 'modules/comment.module')
-rw-r--r-- | modules/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment.module b/modules/comment.module index 8184d6341..87d5fbd8e 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -251,7 +251,7 @@ function comment_nodeapi(&$node, $op, $arg = 0) { if (user_access('administer comments')) { $selected = isset($node->comment) ? $node->comment : variable_get("comment_$node->type", 2); $output = form_radios('', 'comment', $selected, array(t('Disabled'), t('Read only'), t('Read/write'))); - return form_group_collapsible(t('User comments'), $output, TRUE); + return form_group_collapsible(t('Comment options'), $output, TRUE); } break; |