[freeside-commits] freeside/FS/FS Maestro.pm,1.5,1.6
Ivan,,,
ivan at wavetail.420.am
Tue Jul 27 00:08:28 PDT 2010
Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv20905
Modified Files:
Maestro.pm
Log Message:
fix fallout with original API usage, oops, RT#9334
Index: Maestro.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/Maestro.pm,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -w -d -r1.5 -r1.6
--- Maestro.pm 27 Jul 2010 06:48:39 -0000 1.5
+++ Maestro.pm 27 Jul 2010 07:08:26 -0000 1.6
@@ -106,7 +106,7 @@
my $conf = new FS::Conf;
my %outbound_pkgs = map { $_=>1 } $conf->config('mc-outbound_packages');
- my $outbound_service =
+ $outbound_service =
scalar( grep { $outbound_pkgs{ $_->pkgpart }
&& !$_->get('cancel')
}
@@ -120,7 +120,7 @@
sort { $a->bill <=> $b->bill }
grep { !$_->get('cancel') && $_->part_pkg->freq ne '0' }
@cust_pkg;
- my $good_till = time2str('%c', $active_cust_pkg[0]->bill || time );
+ $good_till = time2str('%c', $active_cust_pkg[0]->bill || time );
}
More information about the freeside-commits
mailing list