summaryrefslogtreecommitdiff
path: root/includes/common.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/common.inc')
-rw-r--r--includes/common.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/common.inc b/includes/common.inc
index 4890b2776..611dc72c4 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -223,7 +223,7 @@ function table_cell($cell, $header = 0) {
function table($header, $rows) {
- $output .= "<table>";
+ $output .= "<table>\n";
/*
** Emit the table header:
@@ -234,7 +234,7 @@ function table($header, $rows) {
foreach ($header as $cell) {
$output .= table_cell($cell, 1);
}
- $output .= " </tr>";
+ $output .= " </tr>\n";
}
/*
@@ -253,11 +253,11 @@ function table($header, $rows) {
foreach ($row as $cell) {
$output .= table_cell($cell, 0);
}
- $output .= " </tr>";
+ $output .= " </tr>\n";
}
}
- $output .= "</table>";
+ $output .= "</table>\n";
return $output;
}