monitoring: Fix sort control columns for the host group summary

refs #8241
This commit is contained in:
Eric Lippmann 2015-05-21 12:38:20 +02:00
parent 73eb8cc805
commit 89bac33595

View File

@ -554,12 +554,8 @@ class Monitoring_ListController extends Controller
$this->setupSortControl(array( $this->setupSortControl(array(
'hosts_severity' => $this->translate('Severity'), 'hosts_severity' => $this->translate('Severity'),
'hostgroup_alias' => $this->translate('Host Group Name'), 'hostgroup_alias' => $this->translate('Host Group Name'),
'services_total' => $this->translate('Total Services'), 'hosts_total' => $this->translate('Total Hosts'),
'services_ok' => $this->translate('Services OK'), 'services_total' => $this->translate('Total Services')
'services_unknown' => $this->translate('Services UNKNOWN'),
'services_critical' => $this->translate('Services CRITICAL'),
'services_warning' => $this->translate('Services WARNING'),
'services_pending' => $this->translate('Services PENDING')
), $query); ), $query);
} }