[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


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};



More information about the freeside-commits mailing list