From: Jonathan Prykop Date: Fri, 15 Jan 2016 19:31:24 +0000 (-0600) Subject: RT#38363: use cust_payby when saving cards during payments [ng_selfservice] X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=e74ab331f1d713d9baf4daa12834fe7d9028520d RT#38363: use cust_payby when saving cards during payments [ng_selfservice] --- 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'] ) {