@@ -, +, @@ Modern::Perl;' - Check that it now says 'use Modern::Perl' and not 'use trict; use --- offline_circ/enqueue_koc.pl | 3 +-- offline_circ/list.pl | 3 +-- offline_circ/process.pl | 3 +-- offline_circ/process_koc.pl | 3 +-- offline_circ/service.pl | 3 +-- 5 files changed, 5 insertions(+), 10 deletions(-) --- a/offline_circ/enqueue_koc.pl +++ a/offline_circ/enqueue_koc.pl @@ -18,8 +18,7 @@ # along with Koha; if not, see . # -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Output; --- a/offline_circ/list.pl +++ a/offline_circ/list.pl @@ -18,8 +18,7 @@ # along with Koha; if not, see . # -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Output; --- a/offline_circ/process.pl +++ a/offline_circ/process.pl @@ -18,8 +18,7 @@ # along with Koha; if not, see . # -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; --- a/offline_circ/process_koc.pl +++ a/offline_circ/process_koc.pl @@ -18,8 +18,7 @@ # along with Koha; if not, see . # -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use Carp; --- a/offline_circ/service.pl +++ a/offline_circ/service.pl @@ -18,8 +18,7 @@ # along with Koha; if not, see . # -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; --