diff options
author | ivan <ivan> | 2003-10-24 21:19:49 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-10-24 21:19:49 +0000 |
commit | 4fa87d8ee58fd947ff3e1d317b430922fa1a0426 (patch) | |
tree | 4cf5f5cb9cf61a16fc29fd67fa164a715805ab92 | |
parent | 400fb761af56fc1c77a2fd43435dca5df0691bca (diff) |
need Business::CreditCard here (1.4 only)
-rw-r--r-- | FS/FS/cust_bill.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index 94299e890..55a66b77e 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -839,6 +839,7 @@ sub realtime_bop { #remove paycvv after initial transaction #make this disable-able via a config option if anyone insists? # (though that probably violates cardholder agreements) + use Business::CreditCard; if ( defined $cust_main->dbdef_table->column('paycvv') && length($cust_main->paycvv) && ! grep { $_ eq cardtype($cust_main->payinfo) } $conf->config('cvv-save') |