From b47b1631e005ec0683f97e88bcbe6d77dadf7824 Mon Sep 17 00:00:00 2001 From: Dave Greenberg Date: Thu, 19 Feb 2015 16:04:02 -0800 Subject: [PATCH] Update Payment.php Remove extraneous "$processorInstance = " on line 592. --- 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 60a6e35509..8a21c0298b 100644 --- a/CRM/Core/Payment.php +++ b/CRM/Core/Payment.php @@ -589,7 +589,7 @@ abstract class CRM_Core_Payment { } } - $processorInstance = $processorInstance = Civi\Payment\System::singleton()->getById($dao->processor_id); + $processorInstance = Civi\Payment\System::singleton()->getById($dao->processor_id); // Should never be empty - we already established this processor_id exists and is active. if (empty($processorInstance)) { -- 2.25.1