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.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/sys_template.php b/includes/sys_template.php
index 24e6797b..2015a0d7 100644
--- a/includes/sys_template.php
+++ b/includes/sys_template.php
@@ -256,16 +256,16 @@ function table($columns, $rows_raw, $data = true) {
$html .= '<table class="table ' . ($data ? ' data' : '') . '">';
$html .= '<thead><tr>';
foreach ($columns as $key => $column)
- $html .= '<th class="' . $key . '">' . $column . '</th>';
+ $html .= '<th class="column_' . $key . '">' . $column . '</th>';
$html .= '</tr></thead>';
$html .= '<tbody>';
foreach ($rows as $row) {
$html .= '<tr>';
foreach ($columns as $key => $column)
if (isset($row[$key]))
- $html .= '<td class="' . $key . '">' . $row[$key] . '</td>';
+ $html .= '<td class="column_' . $key . '">' . $row[$key] . '</td>';
else
- $html .= '<td class="' . $key . '">&nbsp;</td>';
+ $html .= '<td class="column_' . $key . '">&nbsp;</td>';
$html .= '</tr>';
}
$html .= '</tbody>';