@@ -, +, @@ --- tools/exceptionHolidays.pl | 2 ++ tools/holidays.pl | 2 ++ tools/newHolidays.pl | 2 ++ tools/tools-home.pl | 2 ++ 4 files changed, 8 insertions(+), 0 deletions(-) --- a/tools/exceptionHolidays.pl +++ a/tools/exceptionHolidays.pl @@ -1,6 +1,8 @@ #!/usr/bin/perl use strict; +use warnings; + use CGI; use C4::Auth; --- a/tools/holidays.pl +++ a/tools/holidays.pl @@ -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; --- a/tools/newHolidays.pl +++ a/tools/newHolidays.pl @@ -1,6 +1,8 @@ #!/usr/bin/perl use strict; +use warnings; + use CGI; use C4::Auth; --- a/tools/tools-home.pl +++ a/tools/tools-home.pl @@ -16,6 +16,8 @@ # Suite 330, Boston, MA 02111-1307 USA use strict; +use warnings; + use CGI; use C4::Auth; use C4::Output; --