mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-06-09 00:22:45 -04:00
ContactQuery: Provide case insensitive filter column `service_host'
refs #8613
This commit is contained in:
parent
6d03b2fe8f
commit
3d7e418032
2 changed files with 3 additions and 2 deletions
|
|
@ -42,7 +42,8 @@ class ContactQuery extends IdoQuery
|
|||
'services' => array(
|
||||
'service' => 'so.name2 COLLATE latin1_general_ci',
|
||||
'service_description' => 'so.name2',
|
||||
'service_host_name' => 'so.name1',
|
||||
'service_host' => 'so.name1 COLLATE latin1_general_ci',
|
||||
'service_host_name' => 'so.name1'
|
||||
)
|
||||
);
|
||||
|
||||
|
|
|
|||
|
|
@ -61,6 +61,6 @@ class Contact extends DataView
|
|||
|
||||
public function getFilterColumns()
|
||||
{
|
||||
return array('contact', 'alias', 'email', 'host', 'service');
|
||||
return array('contact', 'alias', 'email', 'host', 'service', 'service_host');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue