From e1eb31b573d623a371461ab1c3bf089474e08833 Mon Sep 17 00:00:00 2001 From: Ravish Nair Date: Tue, 22 Oct 2013 15:40:25 +0530 Subject: [PATCH] -- fix for CRM-13461 ---------------------------------------- * CRM-13461: Total amount missing from event confirmation mail http://issues.civicrm.org/jira/browse/CRM-13461 --- CRM/Core/Payment/BaseIPN.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CRM/Core/Payment/BaseIPN.php b/CRM/Core/Payment/BaseIPN.php index 5f2f7bec31..fc64123c28 100644 --- a/CRM/Core/Payment/BaseIPN.php +++ b/CRM/Core/Payment/BaseIPN.php @@ -468,6 +468,9 @@ LIMIT 1;"; $values['custom_pre_id'] = $custom_pre_id; $values['custom_post_id'] = $custom_post_ids; + //for tasks 'Change Participant Status' and 'Batch Update Participants Via Profile' case + //and cases involving status updation through ipn + $values['totalAmount'] = $input['amount']; $contribution->source = ts('Online Event Registration') . ': ' . $values['event']['title']; -- 2.25.1