summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2006-12-21 03:05:26 +0000
committerivan <ivan>2006-12-21 03:05:26 +0000
commit709fb1259715b7bd353a6a6e37274f253fcb0c11 (patch)
tree820c0d5fa61723045ae0d3efb53e572507628300
parent8133cc2c4eb7198e9e9090437c087d568563b57d (diff)
fix on-demand payment form when making payments from masked data
-rw-r--r--httemplate/misc/payment.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/misc/payment.cgi b/httemplate/misc/payment.cgi
index 081964e93..d7a2c2daf 100644
--- a/httemplate/misc/payment.cgi
+++ b/httemplate/misc/payment.cgi
@@ -153,7 +153,7 @@ function OLiframeContent(src, width, height, name) {
% } elsif ( $payby eq 'CHEK' ) {
% my( $payinfo1, $payinfo2, $payname, $ss ) = ( '', '', '', '' );
% if ( $cust_main->payby =~ /^(CHEK|DCHK)$/ ) {
-% $cust_main->paymask =~ /^(\d+)\@(\d+)$/
+% $cust_main->paymask =~ /^([\dx]+)\@([\dx]+)$/
% or die "unparsable payinfo ". $cust_main->payinfo;
% ($payinfo1, $payinfo2) = ($1, $2);
% $payname = $cust_main->payname;