From 606319173443a160816966a5bcb1df34f7d1c7be Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Wed, 7 Jan 2015 15:41:27 +1300 Subject: [PATCH] CRM-15771 remove payment singleton ref --- CRM/Core/Payment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/Payment.php b/CRM/Core/Payment.php index c4b6580944..84d5602d3c 100644 --- a/CRM/Core/Payment.php +++ b/CRM/Core/Payment.php @@ -580,7 +580,7 @@ abstract class CRM_Core_Payment { } // Instantiate PP - $processorInstance = $paymentClass::singleton($mode, $paymentProcessor); + $processorInstance = new $paymentClass($mode, $paymentProcessor); // Does PP implement this method, and can we call it? if (!method_exists($processorInstance, $method) || -- 2.25.1