diff options
author | mark <mark> | 2011-11-30 21:37:22 +0000 |
---|---|---|
committer | mark <mark> | 2011-11-30 21:37:22 +0000 |
commit | 94c49c00e056bbbda3f866a98e80124153370656 (patch) | |
tree | fcfaf8c7b27de80ee4303c7f69833ba2bb637fe2 /httemplate/misc/process | |
parent | bd376d43f95dcdebcd180e7fff5caf0678edc15d (diff) |
fix typo, #15068
Diffstat (limited to 'httemplate/misc/process')
-rw-r--r-- | httemplate/misc/process/payment.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/misc/process/payment.cgi b/httemplate/misc/process/payment.cgi index bfa3f0ea9..f4f9561dc 100644 --- a/httemplate/misc/process/payment.cgi +++ b/httemplate/misc/process/payment.cgi @@ -129,7 +129,7 @@ if ( $payby eq 'CHEK' ) { die "unknown payby $payby"; } -$cgi->param('discount_term') =~ /^(\d)*$/ +$cgi->param('discount_term') =~ /^(\d*)$/ or errorpage("illegal discount_term"); my $discount_term = $1; |