diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-08-14 12:50:50 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-08-14 12:50:50 -0700 |
commit | 0f4da1d19bdb76f2b030d6ae961161426d11716a (patch) | |
tree | bfccfad2f5cbd1f0d8bc9addf96fb2a743bd766c | |
parent | afed6387462fb38675f08a5840c632a405b01148 (diff) |
missing a use B:OP causes an error in rare edge cases with batching, RT#77003
-rw-r--r-- | FS/FS/cust_main/Billing_Realtime.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/cust_main/Billing_Realtime.pm b/FS/FS/cust_main/Billing_Realtime.pm index d62120b3f..f16752ba4 100644 --- a/FS/FS/cust_main/Billing_Realtime.pm +++ b/FS/FS/cust_main/Billing_Realtime.pm @@ -6,6 +6,7 @@ use vars qw( $realtime_bop_decline_quiet ); #ugh use Carp; use Data::Dumper; use Business::CreditCard 0.35; +use Business::OnlinePayment; use FS::UID qw( dbh myconnect ); use FS::Record qw( qsearch qsearchs ); use FS::payby; |