[freeside-commits] freeside/FS/FS/ClientAPI MyAccount.pm,1.46,1.47

Ivan,,, ivan at wavetail.420.am
Wed Dec 13 22:00:47 PST 2006


Update of /home/cvs/cvsroot/freeside/FS/FS/ClientAPI
In directory wavetail:/tmp/cvs-serv15602/FS/FS/ClientAPI

Modified Files:
	MyAccount.pm 
Log Message:
encryption fixes from huntsberg & jayce

Index: MyAccount.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/ClientAPI/MyAccount.pm,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- MyAccount.pm	7 Dec 2006 02:40:30 -0000	1.46
+++ MyAccount.pm	14 Dec 2006 06:00:45 -0000	1.47
@@ -130,7 +130,7 @@
     }
 
     if ( $cust_main->payby =~ /^(CARD|DCRD)$/ ) {
-      $return{payinfo} = $cust_main->payinfo_masked;
+      $return{payinfo} = $cust_main->paymask;
       @return{'month', 'year'} = $cust_main->paydate_monthyear;
     }
 
@@ -175,7 +175,7 @@
 
   if ( $p->{'payby'} =~ /^(CARD|DCRD)$/ ) {
     $new->paydate($p->{'year'}. '-'. $p->{'month'}. '-01');
-    if ( $new->payinfo eq $cust_main->payinfo_masked ) {
+    if ( $new->payinfo eq $cust_main->paymask ) {
       $new->payinfo($cust_main->payinfo);
     } else {
       $new->paycvv($p->{'paycvv'});



More information about the freeside-commits mailing list