Skip to content

Commit

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

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

0 comments on commit 9cc5469

Please sign in to comment.