From 6f9ece22679962606544c61f6101bef45e358fcd Mon Sep 17 00:00:00 2001 From: jitendrapurohit Date: Fri, 8 Jul 2016 14:12:36 +0530 Subject: [PATCH] minor fix --- CRM/Core/Payment/PayPalIPN.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Core/Payment/PayPalIPN.php b/CRM/Core/Payment/PayPalIPN.php index e9e0cf093b..b90ccd67db 100644 --- a/CRM/Core/Payment/PayPalIPN.php +++ b/CRM/Core/Payment/PayPalIPN.php @@ -71,8 +71,8 @@ class CRM_Core_Payment_PayPalIPN extends CRM_Core_Payment_BaseIPN { FALSE ); if ($abort && $value === NULL) { - CRM_Core_Error::debug_log_message("Could not find an entry for $name in $location"); - echo "Failure: Missing Parameter

" . $name; + CRM_Core_Error::debug_log_message("Could not find an entry for $name"); + echo "Failure: Missing Parameter

" . CRM_Utils_Type::escape($name, 'String'); exit(); } return $value; -- 2.25.1