diff options
Diffstat (limited to 'includes/sys_template.php')
-rw-r--r-- | includes/sys_template.php | 2 |
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) { |