summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics_reporting/page.inc.php
diff options
context:
space:
mode:
authorSimon Rettberg2017-02-07 14:33:04 +0100
committerSimon Rettberg2017-02-07 14:33:04 +0100
commit3428949ab80ad023693834a789008f230728493a (patch)
treeda622c02575ed2d8613779d75df609466f62316c /modules-available/statistics_reporting/page.inc.php
parent[statistics_reporting] Excel wants ';' in CSV (diff)
downloadslx-admin-3428949ab80ad023693834a789008f230728493a.tar.gz
slx-admin-3428949ab80ad023693834a789008f230728493a.tar.xz
slx-admin-3428949ab80ad023693834a789008f230728493a.zip
[statistics_reporting] Fix hiding of checkboxes not matching any column
Diffstat (limited to 'modules-available/statistics_reporting/page.inc.php')
-rw-r--r--modules-available/statistics_reporting/page.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules-available/statistics_reporting/page.inc.php b/modules-available/statistics_reporting/page.inc.php
index 8ae9ec92..06f9cfb6 100644
--- a/modules-available/statistics_reporting/page.inc.php
+++ b/modules-available/statistics_reporting/page.inc.php
@@ -81,7 +81,7 @@ class Page_Statistics_Reporting extends Page
foreach ($this->COLUMNS as $column) {
$data['columns'][] = array(
- 'id' => $column,
+ 'id' => 'col_' . $column,
'name' => Dictionary::translateFile('template-tags', 'lang_' . $column, true),
'checked' => Request::get($column, 'on', 'string') === 'on' ? 'checked' : '',
);