summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2016-07-20 13:02:29 -0700
committerIvan Kohler <ivan@freeside.biz>2016-07-20 13:02:29 -0700
commitb1e8c45e0a7a4142f62070c76dd10446ea7ea1ba (patch)
tree805dda8d9c4c46a49e67c26f4bbcccfb44f9a42a /FS
parent622d9a5930f47dad0c2897fed1b523138cb3e5c5 (diff)
new mastercard ranges
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/ClientAPI/MyAccount.pm2
-rw-r--r--FS/FS/Mason.pm4
-rw-r--r--FS/FS/cust_main/Billing_Realtime.pm2
3 files changed, 4 insertions, 4 deletions
diff --git a/FS/FS/ClientAPI/MyAccount.pm b/FS/FS/ClientAPI/MyAccount.pm
index a94127086..630346a81 100644
--- a/FS/FS/ClientAPI/MyAccount.pm
+++ b/FS/FS/ClientAPI/MyAccount.pm
@@ -11,7 +11,7 @@ use Digest::SHA qw(sha512_hex);
use Date::Format;
use Time::Duration;
use Time::Local qw(timelocal_nocheck);
-use Business::CreditCard;
+use Business::CreditCard 0.35;
use HTML::Entities;
use Text::CSV_XS;
use Spreadsheet::WriteExcel;
diff --git a/FS/FS/Mason.pm b/FS/FS/Mason.pm
index 3ab8aeb4d..6fc4bf09f 100644
--- a/FS/FS/Mason.pm
+++ b/FS/FS/Mason.pm
@@ -99,7 +99,7 @@ if ( -e $addl_handler_use_file ) {
use Excel::Writer::XLSX;
#use Excel::Writer::XLSX::Utility; #redundant with above
- use Business::CreditCard 0.30; #for mask-aware cardtype()
+ use Business::CreditCard 0.35; #for new mastercard ranges and visa lengths
use NetAddr::IP;
use Net::MAC::Vendor;
use Net::Ping;
@@ -666,7 +666,7 @@ the same "random" numbers.
Works around a Net::SSLeay connection error by creating and deleting an SSL
context, so subsequent connections do not error out with a CTX_new (900 NET OR
-SSL ERROR).
+SSL ERROR). See http://bugs.debian.org/830152
=cut
diff --git a/FS/FS/cust_main/Billing_Realtime.pm b/FS/FS/cust_main/Billing_Realtime.pm
index f5b96f2ee..8ebad53cb 100644
--- a/FS/FS/cust_main/Billing_Realtime.pm
+++ b/FS/FS/cust_main/Billing_Realtime.pm
@@ -4,7 +4,7 @@ use strict;
use vars qw( $conf $DEBUG $me );
use vars qw( $realtime_bop_decline_quiet ); #ugh
use Data::Dumper;
-use Business::CreditCard 0.28;
+use Business::CreditCard 0.35;
use FS::UID qw( dbh );
use FS::Record qw( qsearch qsearchs );
use FS::Misc qw( send_email );