Revert "Make ascending sort by host or service severity initiatable"

This reverts commit 7e1f9f6dcc.
This commit is contained in:
Johannes Meyer 2015-05-15 10:54:30 +02:00
parent 7e1f9f6dcc
commit 149e893ecd
2 changed files with 9 additions and 12 deletions

View File

@ -94,11 +94,10 @@ class HostStatus extends DataView
),
'host_severity' => array(
'columns' => array(
'host_severity',
'host_last_state_change',
'host_severity DESC',
'host_last_state_change DESC',
'host_display_name ASC'
),
'order' => self::SORT_DESC
)
),
'host_address' => array(
'columns' => array(

View File

@ -130,21 +130,19 @@ class ServiceStatus extends DataView
),
'service_severity' => array(
'columns' => array(
'service_severity',
'service_last_state_change',
'service_severity DESC',
'service_last_state_change DESC',
'service_display_name ASC',
'host_display_name ASC'
),
'order' => self::SORT_DESC
)
),
'host_severity' => array(
'columns' => array(
'host_severity',
'host_last_state_change',
'host_severity DESC',
'host_last_state_change DESC',
'host_display_name ASC',
'service_display_name ASC'
),
'order' => self::SORT_DESC
)
),
'host_display_name' => array(
'columns' => array(