Skip to content

Commit

Permalink
NotificationQuery: Provide case-insensitive filter column `service'
Browse files Browse the repository at this point in the history
refs #8613
  • Loading branch information
Johannes Meyer committed Apr 13, 2015
1 parent 3653ec8 commit 29f05bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -15,6 +15,7 @@ class NotificationQuery extends IdoQuery
'objects' => array(
'host' => 'o.name1 COLLATE latin1_general_ci',
'host_name' => 'o.name1',
'service' => 'o.name2 COLLATE latin1_general_ci',
'service_description' => 'o.name2'
),
'contact' => array(
Expand Down
Expand Up @@ -37,6 +37,6 @@ public function getSortRules()

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

0 comments on commit 29f05bf

Please sign in to comment.