diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-11-06 18:27:58 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-11-06 18:27:58 +0000 |
commit | 00d638ca5790cac5cf1d7b195e07d17f9cbb80a4 (patch) | |
tree | db1d3fa5b564953897099c3189210a72aebcb0f6 /modules/comment/comment.module | |
parent | 6735be099233e1455d3e821db3767cfbbf892980 (diff) | |
download | brdo-00d638ca5790cac5cf1d7b195e07d17f9cbb80a4.tar.gz brdo-00d638ca5790cac5cf1d7b195e07d17f9cbb80a4.tar.bz2 |
- Usability improvement: replaced many selection boxes by radio buttons.
Patch by Stefan.
- Usability improvement: introduced a form_group() function and updated
the node and comment module to take advantage of it. Patch #149 by
Eric Farris.
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": |