Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/xhtml/HTMLTableController.php')
-rw-r--r--src/xhtml/HTMLTableController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xhtml/HTMLTableController.php b/src/xhtml/HTMLTableController.php
index 31ea5e89..96656656 100644
--- a/src/xhtml/HTMLTableController.php
+++ b/src/xhtml/HTMLTableController.php
@@ -147,7 +147,7 @@ class HTMLTableController extends HTMLController
foreach ($columns as $column_id => $column) {
// Handle cases where no class has been passed
-
+
$class = (isset($column['class']) && '' !== $column['class']) ? $column['class'] : '';
switch ($column_id) {
@@ -159,7 +159,7 @@ class HTMLTableController extends HTMLController
break;
default:
- $thead_html .= '<th class="data' . $class . '">';
+ $thead_html .= '<th class="data' . $class . ' '.$column_id.'">';
if (isset($column['help'])) {
$thead_html .= $this->view->printHelp($column['title'], $column['help'], false);