@@ -, +, @@ --- errors/400.pl | 3 +-- errors/401.pl | 3 +-- errors/402.pl | 3 +-- errors/403.pl | 3 +-- errors/404.pl | 3 +-- errors/500.pl | 3 +-- 6 files changed, 6 insertions(+), 12 deletions(-) --- a/errors/400.pl +++ a/errors/400.pl @@ -16,8 +16,7 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; use C4::Output; --- a/errors/401.pl +++ a/errors/401.pl @@ -15,8 +15,7 @@ # Koha; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; use C4::Output; --- a/errors/402.pl +++ a/errors/402.pl @@ -16,8 +16,7 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; use C4::Output; --- a/errors/403.pl +++ a/errors/403.pl @@ -16,8 +16,7 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; use C4::Output; --- a/errors/404.pl +++ a/errors/404.pl @@ -16,8 +16,7 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; use C4::Output; --- a/errors/500.pl +++ a/errors/500.pl @@ -16,8 +16,7 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; use C4::Output; --