diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-01-26 13:38:46 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-01-26 13:38:46 +0000 |
commit | d386c110f449d39631c6af1aabced9799c7a372d (patch) | |
tree | 443ae8e3b5ac6680d5a25b26271ce02780b4a51e /modules/comment.module | |
parent | 34a927e6e36c08522bd5b1a873d563e9da5bc7ab (diff) | |
download | brdo-d386c110f449d39631c6af1aabced9799c7a372d.tar.gz brdo-d386c110f449d39631c6af1aabced9799c7a372d.tar.bz2 |
- removed redundant spaces
Diffstat (limited to 'modules/comment.module')
-rw-r--r-- | modules/comment.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/comment.module b/modules/comment.module index bdda1cc0e..e4a8ca9ac 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -28,7 +28,7 @@ function comment_edit($id) { $output .= " <INPUT TYPE=\"submit\" NAME=\"op\" VALUE=\"Save comment\">\n"; $output .= "</P>\n"; $output .= "</FORM>\n"; - + print $output; } @@ -43,7 +43,7 @@ function comment_display($order = "date") { // Perform SQL query: $result = db_query("SELECT c.*, u.userid FROM comments c LEFT JOIN users u ON u.id = c.author ORDER BY c.$fields[$order] LIMIT 50"); - + // Display comments: $output .= "<TABLE BORDER=\"1\" CELLPADDING=\"2\" CELLSPACING=\"2\">\n"; $output .= " <TR>\n"; @@ -70,7 +70,7 @@ function comment_display($order = "date") { } $output .= "</TABLE>\n"; - + print $output; } |