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…
Reference in New Issue