X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=extern%2FpxIPN.php;h=edf12837748a3b0afaa3990eda0f72a3ac5632c3;hb=a8d9d2073383dc15ab66cce85fea2e140d460612;hp=2a85f2cf433c21f0759d9ce15aee93faa5b26e3d;hpb=6e46589da472f166ecc1b3c5f9182e3d9f3dbadd;p=civicrm-core.git diff --git a/extern/pxIPN.php b/extern/pxIPN.php index 2a85f2cf43..edf1283774 100644 --- a/extern/pxIPN.php +++ b/extern/pxIPN.php @@ -17,7 +17,8 @@ require_once '../civicrm.config.php'; require_once 'CRM/Core/Config.php'; $config = CRM_Core_Config::singleton(); - +$log = new CRM_Utils_SystemLogger(); +$log->alert('payment_notification processor_name=Payment_Express', $_REQUEST); /* * Get the password from the Payment Processor's table based on the DPS user id * being passed back from the server @@ -34,9 +35,9 @@ $params = array(1 => array($_GET['userid'], 'String')); $dpsSettings = CRM_Core_DAO::executeQuery($query, $params); while ($dpsSettings->fetch()) { - $dpsUrl = $dpsSettings->url_site; - $dpsUser = $dpsSettings->user_name; - $dpsKey = $dpsSettings->password; + $dpsUrl = $dpsSettings->url_site; + $dpsUser = $dpsSettings->user_name; + $dpsKey = $dpsSettings->password; $dpsMacKey = $dpsSettings->signature; }