@@ -, +, @@ --- reports/borrowers_out.pl | 3 +-- reports/cat_issues_top.pl | 3 +-- reports/catalogue_out.pl | 3 +-- reports/catalogue_stats.pl | 3 +-- reports/dictionary.pl | 3 +-- reports/issues_avg_stats.pl | 3 +-- reports/issues_stats.pl | 3 +-- reports/itemslost.pl | 3 +-- reports/manager.pl | 3 +-- reports/reports-home.pl | 3 +-- reports/serials_stats.pl | 3 +-- reports/stats.print.pl | 3 +-- 12 files changed, 12 insertions(+), 24 deletions(-) --- a/reports/borrowers_out.pl +++ a/reports/borrowers_out.pl @@ -17,8 +17,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; --- a/reports/cat_issues_top.pl +++ a/reports/cat_issues_top.pl @@ -18,8 +18,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -#use warnings; FIXME - Bug 2505 +use Modern::Perl; use C4::Auth; use CGI qw ( -utf8 ); use C4::Context; --- a/reports/catalogue_out.pl +++ a/reports/catalogue_out.pl @@ -17,8 +17,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; --- a/reports/catalogue_stats.pl +++ a/reports/catalogue_stats.pl @@ -18,8 +18,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -#use warnings; FIXME - Bug 2505 +use Modern::Perl; use C4::Auth; use CGI qw ( -utf8 ); use C4::Context; --- a/reports/dictionary.pl +++ a/reports/dictionary.pl @@ -17,8 +17,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . use CGI::Carp qw(fatalsToBrowser warningsToBrowser); -use strict; -use warnings; +use Modern::Perl; use C4::Auth; use CGI qw ( -utf8 ); use C4::Output; --- a/reports/issues_avg_stats.pl +++ a/reports/issues_avg_stats.pl @@ -18,8 +18,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -#use warnings; FIXME - Bug 2505 +use Modern::Perl; use C4::Auth; use CGI qw ( -utf8 ); use C4::Context; --- a/reports/issues_stats.pl +++ a/reports/issues_stats.pl @@ -17,8 +17,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use Date::Manip; --- a/reports/itemslost.pl +++ a/reports/itemslost.pl @@ -25,8 +25,7 @@ This script displays lost items. =cut -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; --- a/reports/manager.pl +++ a/reports/manager.pl @@ -17,8 +17,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -#use warnings; FIXME - Bug 2505 +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; use C4::Context; --- a/reports/reports-home.pl +++ a/reports/reports-home.pl @@ -18,8 +18,7 @@ # along with Koha; if not, see . -use strict; -#use warnings; FIXME - Bug 2505 +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; use C4::Output; --- a/reports/serials_stats.pl +++ a/reports/serials_stats.pl @@ -17,8 +17,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -use warnings; +use Modern::Perl; use C4::Auth; use CGI qw ( -utf8 ); use C4::Context; --- a/reports/stats.print.pl +++ a/reports/stats.print.pl @@ -1,7 +1,6 @@ #!/usr/bin/perl -use strict; -#use warnings; FIXME - Bug 2505 +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Output; --