From: ivan Date: Thu, 17 Jun 2010 19:39:15 +0000 (+0000) Subject: fix cards being inserted as N/A (fallout from RT#4103), RT#8809 X-Git-Tag: root_of_svc_elec_features~145 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=cbd0ff16c1919dfed551023111221ade89b76b06 fix cards being inserted as N/A (fallout from RT#4103), RT#8809 --- 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,