[freeside-commits] branch FREESIDE_4_BRANCH updated. c8666a392471849f3b945eb44f7c9f838686ad0a
Ivan
ivan at 420.am
Thu Mar 3 14:08:53 PST 2016
The branch, FREESIDE_4_BRANCH has been updated
via c8666a392471849f3b945eb44f7c9f838686ad0a (commit)
from 34ed7ab74056505727e38461d90bdd1326743b7f (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 c8666a392471849f3b945eb44f7c9f838686ad0a
Author: Ivan Kohler <ivan at freeside.biz>
Date: Thu Mar 3 14:08:52 2016 -0800
prevent customer payment type changes from skewing payment report
diff --git a/FS/FS/UI/Web.pm b/FS/FS/UI/Web.pm
index d31e918..136c8e6 100644
--- a/FS/FS/UI/Web.pm
+++ b/FS/FS/UI/Web.pm
@@ -377,7 +377,7 @@ sub cust_sql_fields {
push @fields, $field if (grep { $_ eq $field } @cust_fields);
}
push @fields, "payby AS cust_payby"
- if grep { 'cust_payby' eq $field } @cust_fields;
+ if grep { $_ eq 'cust_payby' } @cust_fields;
push @fields, 'agent_custid';
my @extra_fields = ();
-----------------------------------------------------------------------
Summary of changes:
FS/FS/UI/Web.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
More information about the freeside-commits
mailing list