summaryrefslogtreecommitdiff
path: root/modules/comment/comment.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-01-26 13:38:46 +0000
committerDries Buytaert <dries@buytaert.net>2001-01-26 13:38:46 +0000
commitd386c110f449d39631c6af1aabced9799c7a372d (patch)
tree443ae8e3b5ac6680d5a25b26271ce02780b4a51e /modules/comment/comment.module
parent34a927e6e36c08522bd5b1a873d563e9da5bc7ab (diff)
downloadbrdo-d386c110f449d39631c6af1aabced9799c7a372d.tar.gz
brdo-d386c110f449d39631c6af1aabced9799c7a372d.tar.bz2
- removed redundant spaces
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r--modules/comment/comment.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index bdda1cc0e..e4a8ca9ac 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/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;
}