From 50d71c08236d9a5def6829f0647e60eab6e06ddf Mon Sep 17 00:00:00 2001 From: Dave Greenberg Date: Wed, 15 Jul 2015 16:06:31 -0700 Subject: [PATCH] CRM-16841 - allow use of Dummy processor in LIVE mode. ---------------------------------------- * CRM-16841: Dummy processor can be used for 'live' transaction mode https://issues.civicrm.org/jira/browse/CRM-16841 --- CRM/Core/Payment/Dummy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/Payment/Dummy.php b/CRM/Core/Payment/Dummy.php index 26ba590dae..f4e54d6c45 100644 --- a/CRM/Core/Payment/Dummy.php +++ b/CRM/Core/Payment/Dummy.php @@ -129,7 +129,7 @@ class CRM_Core_Payment_Dummy extends CRM_Core_Payment { * @return bool */ protected function supportsLiveMode() { - return FALSE; + return TRUE; } /** -- 2.25.1