From 36165903e4a3db5d27204a3bea4d54794eda8dab Mon Sep 17 00:00:00 2001 From: jitendrapurohit Date: Fri, 10 Apr 2015 16:19:14 +0530 Subject: [PATCH] warning fix --- CRM/Price/BAO/LineItem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Price/BAO/LineItem.php b/CRM/Price/BAO/LineItem.php index c29603b4c7..9a4a8789ee 100644 --- a/CRM/Price/BAO/LineItem.php +++ b/CRM/Price/BAO/LineItem.php @@ -190,7 +190,7 @@ AND li.entity_id = {$entityId} if ($entity == 'participant') { $additionalParticipantIDs = CRM_Event_BAO_Participant::getAdditionalParticipantIds($entityId); if (!empty($additionalParticipantIDs)) { - $whereClause = "WHERE %2.id IN (%1, ". implode(', ', $additionalParticipantIDs). ")"; + $whereClause = "WHERE %2.id IN (%1, " . implode(', ', $additionalParticipantIDs) . ")"; } } -- 2.25.1