ContactgroupQuery: Provide case-insensitive filter column `service_host'

refs #8613
This commit is contained in:
Johannes Meyer 2015-04-10 12:20:28 +02:00
parent 31a05a3ec0
commit 03c8de5d7b
2 changed files with 2 additions and 1 deletions

View File

@ -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'
)
);

View File

@ -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');
}
}