From: jeff Date: Sun, 17 Jan 2010 03:10:41 +0000 (+0000) Subject: work around bug in pre-perl5.10 which is at best noisy and at worst missorting X-Git-Tag: freeside_1_7_4~6 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=e5b6d80f622bbfc7054e5ed9f385a44d3f601857 work around bug in pre-perl5.10 which is at best noisy and at worst missorting --- diff --git a/FS/FS/cust_pkg.pm b/FS/FS/cust_pkg.pm index ab267462b..d32ad1b60 100644 --- a/FS/FS/cust_pkg.pm +++ b/FS/FS/cust_pkg.pm @@ -1173,8 +1173,12 @@ sub h_cust_svc { sub _sort_cust_svc { my( $self, $arrayref ) = @_; + my $sort = + sub ($$) { my ($a, $b) = @_; $b->[1] cmp $a->[1] or $a->[2] <=> $b->[2] +}; + map { $_->[0] } - sort { $b->[1] cmp $a->[1] or $a->[2] <=> $b->[2] } + sort $sort map { my $pkg_svc = qsearchs( 'pkg_svc', { 'pkgpart' => $self->pkgpart, 'svcpart' => $_->svcpart } );