From: Web Access Date: Tue, 10 May 2016 13:15:45 +0000 (+0530) Subject: CRM-18472: Notice fix X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=5bfade630b2a4485caeaa387ea528c80fea8737e;p=civicrm-core.git CRM-18472: Notice fix --- 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") {