summaryrefslogtreecommitdiff
path: root/includes/sys_template.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2012-12-27 18:08:01 +0100
committerPhilip Häusler <msquare@notrademark.de>2012-12-27 18:08:01 +0100
commit622b85629869cce0b051d3cbc107d9b4bdc6aa89 (patch)
tree6dd55d1e78e527b6027b4924f4848d6b4e7268ca /includes/sys_template.php
parent88134641b83c3cadd25a428d9f9819d158a64c3b (diff)
parent3af1d09d61820a77dcd3d245d714d271f9442111 (diff)
merge css
Diffstat (limited to 'includes/sys_template.php')
-rw-r--r--includes/sys_template.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/sys_template.php b/includes/sys_template.php
index a988ff23..0f030e86 100644
--- a/includes/sys_template.php
+++ b/includes/sys_template.php
@@ -147,7 +147,7 @@ function table($columns, $rows, $data = true) {
$html .= '<table' . ($data ? ' class="data"' : '') . '>';
$html .= '<thead><tr>';
foreach ($columns as $key => $column)
- $html .= '<th>' . $column . '</th>';
+ $html .= '<th class="' . $key . '">' . $column . '</th>';
$html .= '</tr></thead>';
$html .= '<tbody>';
foreach ($rows as $row) {