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

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/views/reports.auditlog.list.php')
-rw-r--r--ui/app/views/reports.auditlog.list.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/ui/app/views/reports.auditlog.list.php b/ui/app/views/reports.auditlog.list.php
index 911fd046805..89eab58bab8 100644
--- a/ui/app/views/reports.auditlog.list.php
+++ b/ui/app/views/reports.auditlog.list.php
@@ -41,7 +41,7 @@ $filter_actions_options = [];
foreach ($data['actions'] as $value => $name) {
$filter_actions_options[] = [
- 'name' => $name,
+ 'label' => $name,
'value' => $value,
'checked' => in_array($value, $data['auditlog_actions'])
];
@@ -49,8 +49,7 @@ foreach ($data['actions'] as $value => $name) {
$filter_actions = (new CCheckBoxList('filter_actions'))
->setId('filter-actions')
- ->addClass(ZBX_STYLE_COLUMNS)
- ->addClass(ZBX_STYLE_COLUMNS_3)
+ ->setColumns(3)
->setOptions($filter_actions_options);
$html_page = (new CHtmlPage())