summaryrefslogtreecommitdiff
path: root/includes/sys_template.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/sys_template.php')
-rw-r--r--includes/sys_template.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/sys_template.php b/includes/sys_template.php
index c3e874ae..f409dada 100644
--- a/includes/sys_template.php
+++ b/includes/sys_template.php
@@ -20,7 +20,8 @@ function table_body($array) {
foreach ($array as $line) {
$html .= "<tr>";
if (is_array($line)) {
-
+ foreach ($line as $td)
+ $html .= "<td>" . $td . "</td>";
} else {
$html .= "<td>" . $line . "</td>";
}