From 19865e9efee519f519fed225e8c2032d48f5b968 Mon Sep 17 00:00:00 2001 From: Pratik Joshi Date: Wed, 12 Mar 2014 13:31:37 +0530 Subject: [PATCH] CRM-13973-qa : fix for the critical bug found mentioned in comment : 58222 --- CRM/Event/BAO/Participant.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Event/BAO/Participant.php b/CRM/Event/BAO/Participant.php index cd76f2d218..4c6036811d 100644 --- a/CRM/Event/BAO/Participant.php +++ b/CRM/Event/BAO/Participant.php @@ -1815,7 +1815,7 @@ SET li.qty = 0, fi.amount = 0.00, eft.amount = 0.00 WHERE (li.entity_table = 'civicrm_participant' AND li.entity_id = {$participantId}) AND - (price_field_value_id NOT IN ({$submittedFieldValues}) OR price_field_id NOT IN ({$submittedFields})) + (price_field_value_id NOT IN ({$submittedFieldValues})) "; CRM_Core_DAO::executeQuery($updateLineItem); } -- 2.25.1