[freeside-commits] freeside/httemplate/misc/process payment.cgi, 1.22.4.4, 1.22.4.5
Ivan,,,
ivan at wavetail.420.am
Mon Oct 17 13:56:15 PDT 2011
Update of /home/cvs/cvsroot/freeside/httemplate/misc/process
In directory wavetail.420.am:/tmp/cvs-serv14794/httemplate/misc/process
Modified Files:
Tag: FREESIDE_2_3_BRANCH
payment.cgi
Log Message:
remove echeck-no_routing, never should have been there in the first place
Index: payment.cgi
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/misc/process/payment.cgi,v
retrieving revision 1.22.4.4
retrieving revision 1.22.4.5
diff -u -w -d -r1.22.4.4 -r1.22.4.5
--- payment.cgi 8 Aug 2011 19:20:40 -0000 1.22.4.4
+++ payment.cgi 17 Oct 2011 20:56:13 -0000 1.22.4.5
@@ -83,13 +83,8 @@
$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'));
- }
my $payinfo2 = $1;
$payinfo = $payinfo1. '@'. $payinfo2;
}
More information about the freeside-commits
mailing list