From 57a56c25877dc26f3548eeb65e1fee454d5de67f Mon Sep 17 00:00:00 2001 From: JKingsnorth Date: Tue, 5 Jul 2016 11:00:59 +0100 Subject: [PATCH] CRM-18186: Participant API filter by registered by id --- CRM/Event/BAO/Query.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CRM/Event/BAO/Query.php b/CRM/Event/BAO/Query.php index 16d9ae17bb..7bce9747f7 100644 --- a/CRM/Event/BAO/Query.php +++ b/CRM/Event/BAO/Query.php @@ -368,6 +368,7 @@ class CRM_Event_BAO_Query { case 'participant_fee_amount': case 'participant_fee_level': case 'participant_campaign_id': + case 'participant_registered_by_id': $qillName = $name; if (in_array($name, array( @@ -379,6 +380,7 @@ class CRM_Event_BAO_Query { 'participant_fee_level', 'participant_is_pay_later', 'participant_campaign_id', + 'participant_registered_by_id', )) ) { $name = str_replace('participant_', '', $name); -- 2.25.1