diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-11-04 00:21:03 -0600 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-11-05 20:08:05 -0600 |
commit | 8340c04a79bbce239396608dba53b82d9ad7f2f5 (patch) | |
tree | 7448257b2729ac87768f367e34040f2c52bbc42d /FS | |
parent | dd9dd7a913cd8da4d97b1c72522e016562a98459 (diff) |
RT#38314: Declined payment shows card as tokenized after first attempt [fixed if paymask is not passed]
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_main/Billing_Realtime.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main/Billing_Realtime.pm b/FS/FS/cust_main/Billing_Realtime.pm index 403d8dd1c..d8e2c7cfa 100644 --- a/FS/FS/cust_main/Billing_Realtime.pm +++ b/FS/FS/cust_main/Billing_Realtime.pm @@ -889,7 +889,7 @@ sub _realtime_bop_result { '_date' => '', 'payby' => $cust_pay_pending->payby, 'payinfo' => $options{'payinfo'}, - 'paymask' => $options{'paymask'}, + 'paymask' => $options{'paymask'} || $cust_pay_pending->paymask, 'paydate' => $cust_pay_pending->paydate, 'pkgnum' => $cust_pay_pending->pkgnum, 'discount_term' => $options{'discount_term'}, |