From 532a4bcbd41fd53e3c2d55071eb3925cf1292d8f Mon Sep 17 00:00:00 2001 From: yashodha Date: Tue, 10 Nov 2015 13:59:38 +0530 Subject: [PATCH] CRM-17485: Event participant role filter not working in Participant list Count Report ---------------------------------------- * CRM-17485: Event participant role filter not working in Participant list Count Report https://issues.civicrm.org/jira/browse/CRM-17485 --- CRM/Report/Form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Report/Form.php b/CRM/Report/Form.php index 07dee98e20..4980983f84 100644 --- a/CRM/Report/Form.php +++ b/CRM/Report/Form.php @@ -1744,7 +1744,7 @@ class CRM_Report_Form extends CRM_Core_Form { $operator = ''; if ($op == 'mnot') { // mnot == multiple is not one of - $operator = 'NOT'; + $operator = 'NOT'; } $regexp = "[[:cntrl:]]*" . implode('[[:>:]]*|[[:<:]]*', (array) $value) . "[[:cntrl:]]*"; $clause = "{$field['dbAlias']} {$operator} REGEXP '{$regexp}'"; -- 2.25.1