From ebc4703afd1854be5ba5c4d7779b31589cde34c0 Mon Sep 17 00:00:00 2001 From: Jitendra Purohit Date: Mon, 24 Jul 2017 10:17:15 +0530 Subject: [PATCH] CRM-20949 - Fix payment processor assignment --- CRM/Contribute/Form/AbstractEditPayment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Contribute/Form/AbstractEditPayment.php b/CRM/Contribute/Form/AbstractEditPayment.php index 241638a015a5..2d4a4fb3f37b 100644 --- a/CRM/Contribute/Form/AbstractEditPayment.php +++ b/CRM/Contribute/Form/AbstractEditPayment.php @@ -368,7 +368,7 @@ public function assignProcessors() { // this required to show billing block // @todo remove this assignment the billing block is now designed to be always included but will not show fieldsets unless those sets of fields are assigned - $this->assign_by_ref('paymentProcessor', $processor); + $this->assign_by_ref('paymentProcessor', $this->_paymentProcessor); } /**