From a9cf9972081bf05d68c6b84f323e7e0d51ec889d Mon Sep 17 00:00:00 2001 From: atif-shaikh Date: Tue, 30 Dec 2014 20:16:59 +0530 Subject: [PATCH] CRM-15767 - Back Office "Submit Credit Card Contribution" are not being saved. https://issues.civicrm.org/jira/browse/CRM-15767 --- CRM/Core/Payment.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CRM/Core/Payment.php b/CRM/Core/Payment.php index e55bc67fb7..769b863d5f 100644 --- a/CRM/Core/Payment.php +++ b/CRM/Core/Payment.php @@ -446,6 +446,8 @@ abstract class CRM_Core_Payment { if (is_a($result, 'CRM_Core_Error')) { throw new CRM_Core_Exception(CRM_Core_Error::getMessages($result)); } + //CRM-15767 - Submit Credit Card Contribution not being saved + return $result; } /** -- 2.25.1