From cbd0ff16c1919dfed551023111221ade89b76b06 Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 17 Jun 2010 19:39:15 +0000 Subject: [PATCH] fix cards being inserted as N/A (fallout from RT#4103), RT#8809 --- FS/FS/cust_main.pm | 9 ++------- 1 file 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, -- 2.11.0