[freeside-commits] branch FREESIDE_4_BRANCH updated. ee32c5f35c41c7bc30a26b3217db3196ff5f39b7
Ivan Kohler
ivan at freeside.biz
Mon Jul 16 18:46:28 PDT 2018
The branch, FREESIDE_4_BRANCH has been updated
via ee32c5f35c41c7bc30a26b3217db3196ff5f39b7 (commit)
from bdaaea08f99d60c05389e16fb3e49b38c862af1a (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 ee32c5f35c41c7bc30a26b3217db3196ff5f39b7
Author: Ivan Kohler <ivan at freeside.biz>
Date: Mon Jul 16 18:46:27 2018 -0700
fix phantom customer links
diff --git a/rt/lib/RT/Record.pm b/rt/lib/RT/Record.pm
index 1818c2d48..8f1b5be5e 100755
--- a/rt/lib/RT/Record.pm
+++ b/rt/lib/RT/Record.pm
@@ -1282,6 +1282,11 @@ sub Customers {
$self->{'Customers'} = $self->MemberOf->Clone;
+ $self->{'Customers'}->Limit( FIELD => 'Base',
+ OPERATOR => 'STARTSWITH',
+ VALUE => 'fsck.com-rt://%/ticket/',
+ );
+
for my $fstable (qw(cust_main cust_svc)) {
$self->{'Customers'}->Limit(
-----------------------------------------------------------------------
Summary of changes:
rt/lib/RT/Record.pm | 5 +++++
1 file changed, 5 insertions(+)
More information about the freeside-commits
mailing list