From 4804d6eeda7557cd68becd3790ea2fe450004c2c Mon Sep 17 00:00:00 2001 From: Tanya Bouman Date: Fri, 31 Aug 2018 08:56:12 -0400 Subject: [PATCH] fixed the rest of the bug --- CRM/Financial/Form/BatchTransaction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Financial/Form/BatchTransaction.php b/CRM/Financial/Form/BatchTransaction.php index 21bd6201a2..dea9ce8724 100644 --- a/CRM/Financial/Form/BatchTransaction.php +++ b/CRM/Financial/Form/BatchTransaction.php @@ -185,7 +185,7 @@ class CRM_Financial_Form_BatchTransaction extends CRM_Contribute_Form { } if (isset(self::$_entityID)) { $paymentInstrumentID = CRM_Core_DAO::getFieldValue('CRM_Batch_BAO_Batch', self::$_entityID, 'payment_instrument_id'); - $defaults['payment_instrument_id'] = $paymentInstrumentID; + $defaults['contribution_payment_instrument_id'] = $paymentInstrumentID; $this->assign('paymentInstrumentID', $paymentInstrumentID); } return $defaults; -- 2.25.1