X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=extern%2FpxIPN.php;h=1c4ab281e8cf6ac6f5635063b271dc2eaf4538e7;hb=1be29aad0dfca44b65ccd9717956ca943c60d28a;hp=39fffc7ac838471f67fcc8e258461e6d65793509;hpb=b34ca5e0a01eee179f1b287c7a6dc1459411b470;p=civicrm-core.git diff --git a/extern/pxIPN.php b/extern/pxIPN.php index 39fffc7ac8..1c4ab281e8 100644 --- a/extern/pxIPN.php +++ b/extern/pxIPN.php @@ -10,7 +10,9 @@ * in creating this payment processor module */ - +if (defined('PANTHEON_ENVIRONMENT')) { + ini_set('session.save_handler', 'files'); +} session_start(); require_once '../civicrm.config.php'; @@ -35,9 +37,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; }