From 9e25c2979fedc52d585b858ca63f2ada265533d3 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Mon, 27 Jul 2015 16:34:09 +1200 Subject: [PATCH] CRM-16919 add domain_id to cacheKey in 4.7 --- CRM/Financial/BAO/PaymentProcessor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Financial/BAO/PaymentProcessor.php b/CRM/Financial/BAO/PaymentProcessor.php index 6e1b723ee1..7f5535adc7 100644 --- a/CRM/Financial/BAO/PaymentProcessor.php +++ b/CRM/Financial/BAO/PaymentProcessor.php @@ -269,7 +269,7 @@ class CRM_Financial_BAO_PaymentProcessor extends CRM_Financial_DAO_PaymentProces */ public static function getAllPaymentProcessors($mode, $reset = FALSE) { - $cacheKey = 'CRM_Financial_BAO_Payment_Processor_' . ($mode ? 'test' : 'all'); + $cacheKey = 'CRM_Financial_BAO_Payment_Processor_' . ($mode ? 'test' : 'all') . '_' . CRM_Core_Config::domainID(); if (!$reset) { $processors = CRM_Utils_Cache::singleton()->get($cacheKey); if (!empty($processors)) { -- 2.25.1