mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-27 07:44:04 +02:00
ContactQuery: Provide case insensitive filter column `service_host'
refs #8613
This commit is contained in:
parent
6d03b2fe8f
commit
3d7e418032
@ -42,7 +42,8 @@ class ContactQuery extends IdoQuery
|
|||||||
'services' => array(
|
'services' => array(
|
||||||
'service' => 'so.name2 COLLATE latin1_general_ci',
|
'service' => 'so.name2 COLLATE latin1_general_ci',
|
||||||
'service_description' => 'so.name2',
|
'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()
|
public function getFilterColumns()
|
||||||
{
|
{
|
||||||
return array('contact', 'alias', 'email', 'host', 'service');
|
return array('contact', 'alias', 'email', 'host', 'service', 'service_host');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user