[freeside-commits] branch master updated. f16665c92d4d81ad20775003877e1cfd9ae8ab82
Ivan
ivan at 420.am
Wed Nov 13 11:02:56 PST 2013
The branch, master has been updated
via f16665c92d4d81ad20775003877e1cfd9ae8ab82 (commit)
from 1ea67bf5e8a9e99967a267129c0e4227682cefba (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 f16665c92d4d81ad20775003877e1cfd9ae8ab82
Author: Ivan Kohler <ivan at freeside.biz>
Date: Wed Nov 13 11:02:54 2013 -0800
omit from history
diff --git a/FS/FS/cust_pay.pm b/FS/FS/cust_pay.pm
index 0669e1a..a7b9108 100644
--- a/FS/FS/cust_pay.pm
+++ b/FS/FS/cust_pay.pm
@@ -36,6 +36,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 b93d816..db53b19 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 8c6ef69..572a2ad 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 92a96cb..c42dc18 100644
--- a/FS/FS/cust_pay_void.pm
+++ b/FS/FS/cust_pay_void.pm
@@ -16,6 +16,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 0649929..d29db5c 100644
--- a/FS/FS/cust_refund.pm
+++ b/FS/FS/cust_refund.pm
@@ -13,6 +13,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