[freeside-commits] freeside/FS/FS payinfo_Mixin.pm, 1.5.2.3, 1.5.2.4

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


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

Modified Files:
      Tag: FREESIDE_1_7_BRANCH
	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.5.2.3
retrieving revision 1.5.2.4
diff -u -d -r1.5.2.3 -r1.5.2.4
--- payinfo_Mixin.pm	5 May 2008 01:53:01 -0000	1.5.2.3
+++ payinfo_Mixin.pm	5 May 2008 02:11:24 -0000	1.5.2.4
@@ -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