summaryrefslogtreecommitdiff
path: root/includes/sys_template.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2011-07-11 21:58:06 +0200
committerPhilip Häusler <msquare@notrademark.de>2011-07-11 21:58:06 +0200
commitf058a07a5ea31221d7f3cb415cb75d1e7e857a38 (patch)
tree91d76a34c2f0ad59ab433dba3e181f2761a85571 /includes/sys_template.php
parentf59f0eae9c44a7464eded0a0d4352c0689df6d11 (diff)
#4 pentabarf shift import
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>";
}