ContactQuery: Provide case insensitive filter column `service_host'

refs #8613
This commit is contained in:
Johannes Meyer 2015-04-10 09:50:26 +02:00
parent 6d03b2fe8f
commit 3d7e418032
2 changed files with 3 additions and 2 deletions

View File

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

View File

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