diff --git a/includes/modules/pages/payer_auth_verifier/header_php.php b/includes/modules/pages/payer_auth_verifier/header_php.php index bc2ccbacc9..cb8571cfc9 100755 --- a/includes/modules/pages/payer_auth_verifier/header_php.php +++ b/includes/modules/pages/payer_auth_verifier/header_php.php @@ -97,8 +97,8 @@ $authenticate_data_array = array('transaction_id' => $_SESSION['3Dsecure_transactionId'], 'payload' => $_POST["PaRes"]); - if (is_object($$payment_module)) { - $authenticate_resp_array = $$payment_module->get3DSecureAuthenticateResponse($authenticate_data_array); + if (is_object(${$payment_module})) { + $authenticate_resp_array = ${$payment_module}->get3DSecureAuthenticateResponse($authenticate_data_array); } $shouldContinue = $authenticate_resp_array['continue_flag']; @@ -150,9 +150,9 @@ //////////////////////////////////////////////////////////////////// // Business rules are set to prompt for another form of payment //////////////////////////////////////////////////////////////////// - $error = $$payment_module->get_authentication_error(); + $error = ${$payment_module}->get_authentication_error(); - $messageStack->add_session('checkout_payment', $error . '', 'error'); + $messageStack->add_session('checkout_payment', $error . '', 'error'); $redirectPage = zen_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL', true, false); } @@ -184,9 +184,9 @@ function onLoadHandler(){ pre_confirmation_check(); + ${$payment_module}->pre_confirmation_check(); // output the appropriate POST vars so form can be processed for submission to gateway - echo $$payment_module->process_button(); + echo ${$payment_module}->process_button(); ?>