[freeside-commits] freeside/httemplate/misc/process payment.cgi, 1.26, 1.27
Ivan,,,
ivan at wavetail.420.am
Mon Oct 17 13:56:16 PDT 2011
Update of /home/cvs/cvsroot/freeside/httemplate/misc/process
In directory wavetail.420.am:/tmp/cvs-serv14792/httemplate/misc/process
Modified Files:
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.26
retrieving revision 1.27
diff -u -w -d -r1.26 -r1.27
--- payment.cgi 8 Aug 2011 19:20:39 -0000 1.26
+++ payment.cgi 17 Oct 2011 20:56:14 -0000 1.27
@@ -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