ContactgroupQuery: Provide case-insensitive filter column `service_host'
refs #8613
This commit is contained in:
parent
31a05a3ec0
commit
03c8de5d7b
|
@ -39,6 +39,7 @@ class ContactgroupQuery extends IdoQuery
|
|||
'services' => array(
|
||||
'service' => 'so.name2 COLLATE latin1_general_ci',
|
||||
'service_description' => 'so.name2',
|
||||
'service_host' => 'so.name1 COLLATE latin1_general_ci',
|
||||
'service_host_name' => 'so.name1'
|
||||
)
|
||||
);
|
||||
|
|
|
@ -61,6 +61,6 @@ class Contactgroup extends DataView
|
|||
|
||||
public function getFilterColumns()
|
||||
{
|
||||
return array('contactgroup', 'contact', 'host', 'service');
|
||||
return array('contactgroup', 'contact', 'host', 'service', 'service_host');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue