[freeside-commits] freeside/FS/FS/ClientAPI MyAccount.pm, 1.143, 1.144

Ivan,,, ivan at wavetail.420.am
Tue Sep 27 18:34:23 PDT 2011


Update of /home/cvs/cvsroot/freeside/FS/FS/ClientAPI
In directory wavetail.420.am:/tmp/cvs-serv21469/FS/FS/ClientAPI

Modified Files:
	MyAccount.pm 
Log Message:
self-service API bank branch support, RT#13656

Index: MyAccount.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/ClientAPI/MyAccount.pm,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -w -d -r1.143 -r1.144
--- MyAccount.pm	28 Sep 2011 01:02:23 -0000	1.143
+++ MyAccount.pm	28 Sep 2011 01:34:20 -0000	1.144
@@ -547,7 +547,7 @@
     $p->{'payinfo1'} =~ /^([\dx]+)$/
       or return { 'error' => "illegal account number ". $p->{'payinfo1'} };
     my $payinfo1 = $1;
-     $p->{'payinfo2'} =~ /^([\dx]+)$/
+     $p->{'payinfo2'} =~ /^([\dx\.]+)$/ # . turned on by -require-bank-branch?
       or return { 'error' => "illegal ABA/routing number ". $p->{'payinfo2'} };
     my $payinfo2 = $1;
     $payinfo = $payinfo1. '@'. $payinfo2;



More information about the freeside-commits mailing list