diff options
-rw-r--r-- | ng_selfservice/payment_ach.php | 1 | ||||
-rw-r--r-- | ng_selfservice/payment_cc.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ng_selfservice/payment_ach.php b/ng_selfservice/payment_ach.php index e58664f81..ecbd9c749 100644 --- a/ng_selfservice/payment_ach.php +++ b/ng_selfservice/payment_ach.php @@ -41,6 +41,7 @@ if ( $receipt_html ) { ?> $payment_info = $freeside->payment_info( array( 'session_id' => $_COOKIE['session_id'], + 'payment_payby' => 'CHEK', ) ); if ( isset($payment_info['error']) && $payment_info['error'] ) { diff --git a/ng_selfservice/payment_cc.php b/ng_selfservice/payment_cc.php index aa13c698c..5c49dab36 100644 --- a/ng_selfservice/payment_cc.php +++ b/ng_selfservice/payment_cc.php @@ -42,6 +42,7 @@ if ( $receipt_html ) { ?> $payment_info = $freeside->payment_info( array( 'session_id' => $_COOKIE['session_id'], + 'payment_payby' => 'CARD', ) ); if ( isset($payment_info['error']) && $payment_info['error'] ) { |