summaryrefslogtreecommitdiff
path: root/includes/sys_template.php
diff options
context:
space:
mode:
authorJan-Philipp Litza <janphilipp@litza.de>2012-12-27 17:32:14 +0100
committerJan-Philipp Litza <janphilipp@litza.de>2012-12-27 17:32:14 +0100
commit3af1d09d61820a77dcd3d245d714d271f9442111 (patch)
tree4b1b45f768454b5f1909c3956b07fe10a3ac697c /includes/sys_template.php
parentb01ab50367a61dbb8b6fd9a6f9c9b645d2bdc4ff (diff)
reworked admin_user again
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) {