From 5bfade630b2a4485caeaa387ea528c80fea8737e Mon Sep 17 00:00:00 2001 From: Web Access Date: Tue, 10 May 2016 18:45:45 +0530 Subject: [PATCH] CRM-18472: Notice fix --- CRM/Core/Payment/Elavon.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Core/Payment/Elavon.php b/CRM/Core/Payment/Elavon.php index 9e5f68405f..b322859fe8 100644 --- a/CRM/Core/Payment/Elavon.php +++ b/CRM/Core/Payment/Elavon.php @@ -133,8 +133,8 @@ class CRM_Core_Payment_Elavon extends CRM_Core_Payment { // define variables for connecting with the gateway $requestFields['ssl_merchant_id'] = $this->_paymentProcessor['user_name']; - $requestFields['ssl_user_id'] = $this->_paymentProcessor['password']; - $requestFields['ssl_pin'] = $this->_paymentProcessor['signature']; + $requestFields['ssl_user_id'] = CRM_Utils_Array::value('password', $this->_paymentProcessor); + $requestFields['ssl_pin'] = CRM_Utils_Array::value('signature', $this->_paymentProcessor); $host = $this->_paymentProcessor['url_site']; if ($this->_mode == "test") { -- 2.25.1