diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-04-21 17:35:29 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-04-21 17:35:29 +0000 |
commit | a66c4e59ecaa4e4ed8a9e6cc5bf652d6f66b2b1f (patch) | |
tree | a2a6d3f5d345e4aef949e414763366bcabe5bd99 | |
parent | 0bd25284dee9af705cbc15c30ab9d80dda8221a7 (diff) | |
download | brdo-a66c4e59ecaa4e4ed8a9e6cc5bf652d6f66b2b1f.tar.gz brdo-a66c4e59ecaa4e4ed8a9e6cc5bf652d6f66b2b1f.tar.bz2 |
- Centered the comment controls... much nicer :)
-rw-r--r-- | includes/comment.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/comment.inc b/includes/comment.inc index 0d1003530..580dcdc98 100644 --- a/includes/comment.inc +++ b/includes/comment.inc @@ -187,6 +187,7 @@ function comment_moderation($comment) { function comment_controls($threshold = 1, $mode = 3, $order = 1) { global $REQUEST_URI, $user; + $output .= "<DIV ALIGN=\"CENTER\">\n"; $output .= "<FORM METHOD=\"post\" ACTION=\"$REQUEST_URI\">\n"; $output .= comment_mode(($user->id ? $user->mode : $mode)); $output .= comment_order(($user->id ? $user->sort : $order)); @@ -194,6 +195,7 @@ function comment_controls($threshold = 1, $mode = 3, $order = 1) { $output .= "<INPUT TYPE=\"submit\" NAME=\"op\" VALUE=\"". t("Update settings") ."\">\n"; $output .= "<INPUT TYPE=\"submit\" NAME=\"op\" VALUE=\"". t("Add comment") ."\">\n"; $output .= "</FORM>\n"; + $output .= "</DIV>\n"; return $output; } |