Sort by host_display_name too when sorting by host_severity

refs #8716
This commit is contained in:
Eric Lippmann 2015-03-13 17:14:14 +01:00
parent 03d85ac6ae
commit dbb5aba737
1 changed files with 4 additions and 4 deletions

View File

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