diff options
Diffstat (limited to 'modules/comment/comment.module')
-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 4f81d029f..8e5a2e7e0 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -1627,7 +1627,7 @@ function comment_nodeapi(&$node, $op, $arg = 0) { $output = form_radio(t("Disabled"), "comment", 0, ($selected == 0)); $output .= form_radio(t("Read only"), "comment", 1, ($selected == 1)); $output .= form_radio(t("Read/write"), "comment", 2, ($selected == 2)); - return form_item(t("Allow user comments"), $output); + return form_group(t("User comments"), $output); } break; case "validate": |