diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-08-23 10:11:10 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-08-23 10:11:10 +0000 |
commit | c485b545550faa036e1c35b2296c39d85b8cfca9 (patch) | |
tree | 914be9ff79eed714c49a1eea92d75a1259b270a9 /modules/comment.module | |
parent | 60ce4e054efdc1a311b83032c7daec1f3a6a42ea (diff) | |
download | brdo-c485b545550faa036e1c35b2296c39d85b8cfca9.tar.gz brdo-c485b545550faa036e1c35b2296c39d85b8cfca9.tar.bz2 |
- Fixed a number of small user experience inconsistencies pointed out by
Keith.
Diffstat (limited to 'modules/comment.module')
-rw-r--r-- | modules/comment.module | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/comment.module b/modules/comment.module index 3bff35e22..99ecb50d7 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -685,7 +685,7 @@ function comment_render($node, $cid = 0) { if ((variable_get("comment_controls", 0) == 0) || (variable_get("comment_controls", 0) == 2)) { print "<form method=\"post\" action=\"". url("comment") ."\"><div>\n"; - theme("box", "", theme("comment_controls", $threshold, $mode, $order, $comments_per_page)); + theme("comment_controls", $threshold, $mode, $order, $comments_per_page); print form_hidden("nid", $nid); print "</div></form>"; } @@ -726,7 +726,7 @@ function comment_render($node, $cid = 0) { if ((variable_get("comment_controls", 0) == 1) || (variable_get("comment_controls", 0) == 2)) { print "<form method=\"post\" action=\"". url("comment") ."\"><div>\n"; - theme("box", "", theme("comment_controls", $threshold, $mode, $order, $comments_per_page)); + theme("comment_controls", $threshold, $mode, $order, $comments_per_page); print form_hidden("nid", $nid); print "</div></form>"; } @@ -1268,10 +1268,10 @@ function comment_controls($threshold = 1, $mode = 3, $order = 1, $comments_per_p $output .= " ". form_submit(t("Save settings")); - $output = form_item(t("Comment viewing options"), $output, t("Select your preferred way to display the comments and click 'Save settings' to activate your changes.")); + $output = form_item(NULL, $output, t("Select your preferred way to display the comments and click 'Save settings' to activate your changes.")); } - return $output; + return theme("box", t("Comment viewing options"), $output); } function comment_moderation_form($comment) { |