diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-08-28 15:16:58 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-08-28 15:16:58 +0000 |
commit | 494e5ab97cd9a5aa3de9b8db187be2f968a9c46d (patch) | |
tree | f684857e76116b49046b939eb57f136cbc322f86 | |
parent | 6ebe50b5367eec589bdaafacb462483c6147d3a3 (diff) | |
download | brdo-494e5ab97cd9a5aa3de9b8db187be2f968a9c46d.tar.gz brdo-494e5ab97cd9a5aa3de9b8db187be2f968a9c46d.tar.bz2 |
- Renamed 'user comments' to 'comment options' for consistency.'
-rw-r--r-- | modules/comment.module | 2 | ||||
-rw-r--r-- | modules/comment/comment.module | 2 |
2 files changed, 2 insertions, 2 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; diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 8184d6341..87d5fbd8e 100644 --- a/modules/comment/comment.module +++ b/modules/comment/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; |