From 735d988f8673c250926f1352d8e7c0a4c1ba247e Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Wed, 24 Jun 2015 23:42:59 +1200 Subject: [PATCH] enotice fix --- 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 7b05870802..9daa16b96a 100644 --- a/CRM/Core/Payment.php +++ b/CRM/Core/Payment.php @@ -931,7 +931,7 @@ INNER JOIN civicrm_contribution con ON ( con.contribution_recur_id = rec.id ) } // Else default - return $this->_paymentProcessor['url_recur']; + return isset($this->_paymentProcessor['url_recur']) ? $this->_paymentProcessor['url_recur'] : ''; } } -- 2.25.1