Skip to content

Commit

Permalink
ContactgroupQuery: Provide case-insensitive filter column `service_host'
Browse files Browse the repository at this point in the history
refs #8613
  • Loading branch information
Johannes Meyer committed Apr 10, 2015
1 parent 31a05a3 commit 03c8de5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -39,6 +39,7 @@ class ContactgroupQuery extends IdoQuery
'services' => array(
'service' => 'so.name2 COLLATE latin1_general_ci',
'service_description' => 'so.name2',
'service_host' => 'so.name1 COLLATE latin1_general_ci',
'service_host_name' => 'so.name1'
)
);
Expand Down
Expand Up @@ -61,6 +61,6 @@ public function getSortRules()

public function getFilterColumns()
{
return array('contactgroup', 'contact', 'host', 'service');
return array('contactgroup', 'contact', 'host', 'service', 'service_host');
}
}

0 comments on commit 03c8de5

Please sign in to comment.