summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2010-06-17 19:39:15 +0000
committerivan <ivan>2010-06-17 19:39:15 +0000
commitcbd0ff16c1919dfed551023111221ade89b76b06 (patch)
treef03402db713b69983570ec5c404a5ae288ba6f60
parent13b6214b6cdb5a9ad6a6afc0c1ebe3f5118b4a10 (diff)
fix cards being inserted as N/A (fallout from RT#4103), RT#8809
-rw-r--r--FS/FS/cust_main.pm9
1 files changed, 2 insertions, 7 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm
index 99b97af42..1d2bf8340 100644
--- a/FS/FS/cust_main.pm
+++ b/FS/FS/cust_main.pm
@@ -1715,12 +1715,7 @@ sub check {
# If it is encrypted and the private key is not availaible then we can't
# check the credit card.
-
- my $check_payinfo = 1;
-
- if ($self->is_encrypted($self->payinfo)) {
- $check_payinfo = 0;
- }
+ my $check_payinfo = ! $self->is_encrypted($self->payinfo);
if ( $check_payinfo && $self->payby =~ /^(CARD|DCRD)$/ ) {
@@ -4796,7 +4791,7 @@ sub _realtime_bop_result {
'paid' => $cust_pay_pending->paid,
'_date' => '',
'payby' => $cust_pay_pending->payby,
- #'payinfo' => $payinfo,
+ 'payinfo' => $options{'payinfo'},
'paybatch' => $paybatch,
'paydate' => $cust_pay_pending->paydate,
'pkgnum' => $cust_pay_pending->pkgnum,