diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-02-02 15:30:13 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-02-02 15:30:13 -0800 |
commit | 159e3b1170a3011738e0937ea1b155488ee5a83c (patch) | |
tree | 8982e955eb0fac8184bd75774ea1ec466e3145df | |
parent | 74f252e841ae742b7defe1042e8e9d3d7c513867 (diff) |
fix fallout with CHEK payments, RT#39861, RT#39863
-rw-r--r-- | FS/FS/cust_main.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index a25321a10..3df17bc62 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -2132,7 +2132,7 @@ sub check { sub check_payinfo_cardtype { my $self = shift; - return '' unless $self->payby =~ /^(CARD|CHEK)$/; + return '' unless $self->payby =~ /^(CARD|DCRD)$/; my $payinfo = $self->payinfo; $payinfo =~ s/\D//g; |