diff options
| author | ivan <ivan> | 2011-10-17 20:56:13 +0000 |
|---|---|---|
| committer | ivan <ivan> | 2011-10-17 20:56:13 +0000 |
| commit | c6fb9a26030c82d4c25618046230db463ff95950 (patch) | |
| tree | 64ce036c402a126a24b4b862cc52713cb64b4a35 /httemplate/misc/process | |
| parent | 81557398ed4af77c420959a84398f123133cdd67 (diff) | |
remove echeck-no_routing, never should have been there in the first place
Diffstat (limited to 'httemplate/misc/process')
| -rw-r--r-- | httemplate/misc/process/payment.cgi | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/httemplate/misc/process/payment.cgi b/httemplate/misc/process/payment.cgi index acf066be9..e09cb570c 100644 --- a/httemplate/misc/process/payment.cgi +++ b/httemplate/misc/process/payment.cgi @@ -83,13 +83,8 @@ if ( $payby eq 'CHEK' ) { $cgi->param('payinfo1') =~ /^(\d+)$/ or errorpage("illegal account number ". $cgi->param('payinfo1')); my $payinfo1 = $1; - if ( $conf->exists('echeck-no_routing') ) { - $cgi->param('payinfo2') =~ /^(\d*)$/ - or errorpage("illegal ABA/routing number ". $cgi->param('payinfo2')); - } else { - $cgi->param('payinfo2') =~ /^(\d+)$/ - or errorpage("illegal ABA/routing number ". $cgi->param('payinfo2')); - } + $cgi->param('payinfo2') =~ /^(\d+)$/ + or errorpage("illegal ABA/routing number ". $cgi->param('payinfo2')); my $payinfo2 = $1; $payinfo = $payinfo1. '@'. $payinfo2; } |
