summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2016-01-29 14:39:24 -0800
committerIvan Kohler <ivan@freeside.biz>2016-01-29 14:39:24 -0800
commitc6c2224fa3ce9b8c30274a119ce42f6bbd29827f (patch)
treeec3b9244be7f6bd17a4e8b4988cef6298e56196c
parent85094055d6a722edc9ecf36e963d17b4b413f505 (diff)
fix card-types config in backend (one-off payments), RT#40125, RT#39861
-rw-r--r--httemplate/misc/process/payment.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/misc/process/payment.cgi b/httemplate/misc/process/payment.cgi
index 01f7deebc..51fb0500c 100644
--- a/httemplate/misc/process/payment.cgi
+++ b/httemplate/misc/process/payment.cgi
@@ -140,7 +140,7 @@ if ( $payby eq 'CHEK' ) {
validate($payinfo)
or errorpage(gettext('invalid_card'));
- unless ( $self->payinfo =~ /^99\d{14}$/ ) { #token
+ unless ( $payinfo =~ /^99\d{14}$/ ) { #token
my $cardtype = cardtype($payinfo);