From b89735ad436ff1114fd1bea97e888842403cad4c Mon Sep 17 00:00:00 2001 From: eileenmcnaugton Date: Mon, 5 Oct 2015 17:55:40 +1300 Subject: [PATCH] CRM-17335 toward eliminating use of leaky static (note this is an ongoing thing - I'm not pro-actively tackling these ATM) --- CRM/Core/Payment/BaseIPN.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/Payment/BaseIPN.php b/CRM/Core/Payment/BaseIPN.php index 162d3043c2..fa5651d089 100644 --- a/CRM/Core/Payment/BaseIPN.php +++ b/CRM/Core/Payment/BaseIPN.php @@ -1163,7 +1163,7 @@ LIMIT 1;"; $from = ' FROM ' . $tableName; $where = " WHERE {$tableName}.entity_id = {$sourceContributionId}"; $query = $insert . $select . $from . $where; - $dao = CRM_Core_DAO::executeQuery($query, CRM_Core_DAO::$_nullArray); + CRM_Core_DAO::executeQuery($query); } } } -- 2.25.1