[freeside-commits] branch FREESIDE_2_3_BRANCH updated. 39b842eecba98e7d86b45ea50548a4c5546090d8

Ivan ivan at 420.am
Wed Nov 13 11:03:02 PST 2013


The branch, FREESIDE_2_3_BRANCH has been updated
       via  39b842eecba98e7d86b45ea50548a4c5546090d8 (commit)
      from  94c5016053ec41fcb79ebfe77c93648545927174 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 39b842eecba98e7d86b45ea50548a4c5546090d8
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Wed Nov 13 11:02:59 2013 -0800

    omit from history

diff --git a/FS/FS/cust_pay.pm b/FS/FS/cust_pay.pm
index 444f68a..20132fe 100644
--- a/FS/FS/cust_pay.pm
+++ b/FS/FS/cust_pay.pm
@@ -37,6 +37,7 @@ FS::UID->install_callback( sub {
 } );
 
 @encrypted_fields = ('payinfo');
+sub nohistory_fields { ('payinfo'); }
 
 =head1 NAME
 
diff --git a/FS/FS/cust_pay_batch.pm b/FS/FS/cust_pay_batch.pm
index 30ddc37..20e88a0 100644
--- a/FS/FS/cust_pay_batch.pm
+++ b/FS/FS/cust_pay_batch.pm
@@ -16,6 +16,9 @@ use FS::cust_bill;
 # 3 is even more information including possibly sensitive data
 $DEBUG = 0;
 
+#@encrypted_fields = ('payinfo');
+sub nohistory_fields { ('payinfo'); }
+
 =head1 NAME
 
 FS::cust_pay_batch - Object methods for batch cards
diff --git a/FS/FS/cust_pay_pending.pm b/FS/FS/cust_pay_pending.pm
index f03ed1f..f845a64 100644
--- a/FS/FS/cust_pay_pending.pm
+++ b/FS/FS/cust_pay_pending.pm
@@ -12,6 +12,7 @@ use FS::cust_pay;
 @ISA = qw( FS::payinfo_transaction_Mixin FS::cust_main_Mixin FS::Record );
 
 @encrypted_fields = ('payinfo');
+sub nohistory_fields { ('payinfo'); }
 
 =head1 NAME
 
diff --git a/FS/FS/cust_pay_void.pm b/FS/FS/cust_pay_void.pm
index bebcfd4..5521884 100644
--- a/FS/FS/cust_pay_void.pm
+++ b/FS/FS/cust_pay_void.pm
@@ -17,6 +17,8 @@ use FS::cust_pay;
 use FS::cust_pkg;
 
 @encrypted_fields = ('payinfo');
+sub nohistory_fields { ('payinfo'); }
+
 $otaker_upgrade_kludge = 0;
 
 =head1 NAME
diff --git a/FS/FS/cust_refund.pm b/FS/FS/cust_refund.pm
index 7df7a55..cb99cbf 100644
--- a/FS/FS/cust_refund.pm
+++ b/FS/FS/cust_refund.pm
@@ -14,6 +14,7 @@ use FS::cust_pay_refund;
 use FS::cust_main;
 
 @encrypted_fields = ('payinfo');
+sub nohistory_fields { ('payinfo'); }
 
 =head1 NAME
 

-----------------------------------------------------------------------

Summary of changes:
 FS/FS/cust_pay.pm         |    1 +
 FS/FS/cust_pay_batch.pm   |    3 +++
 FS/FS/cust_pay_pending.pm |    1 +
 FS/FS/cust_pay_void.pm    |    2 ++
 FS/FS/cust_refund.pm      |    1 +
 5 files changed, 8 insertions(+), 0 deletions(-)




More information about the freeside-commits mailing list