monitoring: Reorder sort column combo box in the hosts overview

This commit is contained in:
Eric Lippmann 2015-01-21 09:30:33 +01:00
parent 9d5dccc484
commit a6ad5ad865
1 changed files with 2 additions and 2 deletions

View File

@ -132,11 +132,11 @@ class Monitoring_ListController extends Controller
$this->filterQuery($query);
$this->setupSortControl(array(
'host_last_check' => $this->translate('Last Check'),
'host_severity' => $this->translate('Severity'),
'host_state' => $this->translate('Current State'),
'host_display_name' => $this->translate('Hostname'),
'host_address' => $this->translate('Address'),
'host_state' => $this->translate('Current State')
'host_last_check' => $this->translate('Last Check')
));
$this->view->hosts = $query->paginate();