mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-25 23:04:51 +02:00
ContactQuery: Change query column `contact_name' to be case sensitive
...and provide `contact' as case-insensitive alternative. refs #8613
This commit is contained in:
parent
f00adc2138
commit
52dcecfd08
@ -8,7 +8,8 @@ class ContactQuery extends IdoQuery
|
|||||||
protected $columnMap = array(
|
protected $columnMap = array(
|
||||||
'contacts' => array(
|
'contacts' => array(
|
||||||
'contact_id' => 'c.contact_id',
|
'contact_id' => 'c.contact_id',
|
||||||
'contact_name' => 'co.name1 COLLATE latin1_general_ci',
|
'contact' => 'co.name1 COLLATE latin1_general_ci',
|
||||||
|
'contact_name' => 'co.name1',
|
||||||
'alias' => 'c.alias COLLATE latin1_general_ci',
|
'alias' => 'c.alias COLLATE latin1_general_ci',
|
||||||
'contact_alias_name' => 'c.alias',
|
'contact_alias_name' => 'c.alias',
|
||||||
'email' => 'c.email_address COLLATE latin1_general_ci',
|
'email' => 'c.email_address COLLATE latin1_general_ci',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user