[freeside-commits] freeside/FS/FS payinfo_Mixin.pm,1.8,1.9

Ivan,,, ivan at wavetail.420.am
Sun May 4 19:11:25 PDT 2008


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

Modified Files:
	payinfo_Mixin.pm 
Log Message:
hopefully really a better fix for using new payment duplicate stuff with cc encryption :/

Index: payinfo_Mixin.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/payinfo_Mixin.pm,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- payinfo_Mixin.pm	5 May 2008 01:52:58 -0000	1.8
+++ payinfo_Mixin.pm	5 May 2008 02:11:23 -0000	1.9
@@ -232,13 +232,16 @@
   } else {
     if ( $self->is_encrypted($self->payinfo) ) {
       #something better?  all it would cause is a decryption error anyway?
-      my $error = $self->ut_anythingn('payinfo');
+      my $error = $self->ut_anything('payinfo');
       return $error if $error;
     } else {
       my $error = $self->ut_textn('payinfo');
       return $error if $error;
     }
   }
+
+  '';
+
 }
 
 =head1 BUGS



More information about the freeside-commits mailing list