Bug 2505: Enabled warnings in tools-home.pl, holidays.pl, exceptionHolidays.pl, and...
authorGarry Collum <gcollum@gmail.com>
Fri, 11 Sep 2009 15:26:57 +0000 (11:26 -0400)
committerGalen Charlton <gmcharlt@gmail.com>
Sat, 12 Sep 2009 12:38:35 +0000 (08:38 -0400)
Tested for warnings after addition of 'use warnings.' No warnings were generated.

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
tools/exceptionHolidays.pl
tools/holidays.pl
tools/newHolidays.pl
tools/tools-home.pl

index c820a92..64a4860 100755 (executable)
@@ -1,6 +1,8 @@
 #!/usr/bin/perl
 
 use strict;
+use warnings;
+
 use CGI;
 
 use C4::Auth;
index 047f226..a6afcaa 100755 (executable)
@@ -17,6 +17,8 @@
 
 #####Sets holiday periods for each branch. Datedues will be extended if branch is closed -TG
 use strict;
+use warnings;
+
 use CGI;
 
 use C4::Auth;
index 08cb7dd..34469d8 100755 (executable)
@@ -1,6 +1,8 @@
 #!/usr/bin/perl
 
 use strict;
+use warnings;
+
 use CGI;
 
 use C4::Auth;
index c49d2e7..7028358 100755 (executable)
@@ -16,6 +16,8 @@
 # Suite 330, Boston, MA  02111-1307 USA
 
 use strict;
+use warnings;
+
 use CGI;
 use C4::Auth;
 use C4::Output;