[freeside-commits] branch master updated. 994d99c9e0c6888d3fa55b4b1169a7bc9d894814
Ivan
ivan at 420.am
Sat Jan 4 19:50:37 PST 2014
The branch, master has been updated
via 994d99c9e0c6888d3fa55b4b1169a7bc9d894814 (commit)
from a0dee868651cf16f600a63294d54fcd3ec3cf05a (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 994d99c9e0c6888d3fa55b4b1169a7bc9d894814
Author: Ivan Kohler <ivan at freeside.biz>
Date: Sat Jan 4 19:50:32 2014 -0800
fix service over-display resulting from changes checked in with fe4515eb37d76849dd08c62782d86bc7ba311dcd
diff --git a/FS/FS/cust_pkg.pm b/FS/FS/cust_pkg.pm
index ce98690..afdd41d 100644
--- a/FS/FS/cust_pkg.pm
+++ b/FS/FS/cust_pkg.pm
@@ -2750,12 +2750,12 @@ the results.
sub cust_svc {
my $self = shift;
cluck "cust_pkg->cust_svc called" if $DEBUG > 2;
- $self->_sort_cust_svc( $self->cust_svc_unsorted_arrayref );
+ $self->_sort_cust_svc( $self->cust_svc_unsorted_arrayref(@_) );
}
sub cust_svc_unsorted {
my $self = shift;
- @{ $self->cust_svc_unsorted_arrayref };
+ @{ $self->cust_svc_unsorted_arrayref(@_) };
}
sub cust_svc_unsorted_arrayref {
-----------------------------------------------------------------------
Summary of changes:
FS/FS/cust_pkg.pm | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
More information about the freeside-commits
mailing list