@@ -, +, @@ Modern::Perl;' - Check that it now says 'use Modern::Perl' and not 'use trict; use --- plugins/plugins-home.pl | 3 +-- plugins/plugins-uninstall.pl | 3 +-- plugins/plugins-upload.pl | 3 +-- plugins/run.pl | 3 +-- 4 files changed, 4 insertions(+), 8 deletions(-) --- a/plugins/plugins-home.pl +++ a/plugins/plugins-home.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 ); --- a/plugins/plugins-uninstall.pl +++ a/plugins/plugins-uninstall.pl @@ -15,8 +15,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 Archive::Extract; use File::Temp; --- a/plugins/plugins-upload.pl +++ a/plugins/plugins-upload.pl @@ -16,8 +16,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 Archive::Extract; use File::Temp; --- a/plugins/run.pl +++ a/plugins/run.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 ); --