[freeside-commits] freeside/FS/FS cust_pkg_reason.pm,1.9,1.9.4.1
Mark Wells
mark at wavetail.420.am
Tue Dec 13 12:34:30 PST 2011
- Previous message: [freeside-commits] freeside/FS/FS svc_acct.pm,1.317.2.3,1.317.2.4
- Next message: [freeside-commits] freeside/FS/FS cdr.pm, 1.76, 1.77 cust_bill_pkg.pm, 1.65, 1.66 part_pkg.pm, 1.127, 1.128 svc_pbx.pm, 1.12, 1.13 svc_phone.pm, 1.40, 1.41
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv24232/FS/FS
Modified Files:
Tag: FREESIDE_2_3_BRANCH
cust_pkg_reason.pm
Log Message:
silence warnings under 5.14
Index: cust_pkg_reason.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/cust_pkg_reason.pm,v
retrieving revision 1.9
retrieving revision 1.9.4.1
diff -u -w -d -r1.9 -r1.9.4.1
--- cust_pkg_reason.pm 18 Sep 2010 07:28:42 -0000 1.9
+++ cust_pkg_reason.pm 13 Dec 2011 20:34:26 -0000 1.9.4.1
@@ -211,7 +211,7 @@
#remove nullability if scalar(@migrated) - $count == 0 && ->column('action');
#seek expirations/adjourns without reason
- foreach my $field qw( expire adjourn cancel susp ) {
+ foreach my $field (qw( expire adjourn cancel susp )) {
my $addl_from =
"LEFT JOIN h_cust_pkg ON ".
"(cust_pkg_reason.pkgnum = h_cust_pkg.pkgnum AND".
@@ -271,7 +271,7 @@
}
#seek cancels/suspends without reason, but with expire/adjourn reason
- foreach my $field qw( cancel susp ) {
+ foreach my $field (qw( cancel susp )) {
my %precursor_map = ( 'cancel' => 'expire', 'susp' => 'adjourn' );
my $precursor = $precursor_map{$field};
- Previous message: [freeside-commits] freeside/FS/FS svc_acct.pm,1.317.2.3,1.317.2.4
- Next message: [freeside-commits] freeside/FS/FS cdr.pm, 1.76, 1.77 cust_bill_pkg.pm, 1.65, 1.66 part_pkg.pm, 1.127, 1.128 svc_pbx.pm, 1.12, 1.13 svc_phone.pm, 1.40, 1.41
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the freeside-commits
mailing list