Bug 14957: Fix perlcritic error on admin/marc-overlay-rules.pl
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 27 Oct 2021 07:16:42 +0000 (09:16 +0200)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 27 Oct 2021 07:16:42 +0000 (09:16 +0200)
Subroutine "new" called using indirect syntax at line 30, column 13.  See page 349 of PBP.  (Severity: 4)

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
admin/marc-overlay-rules.pl

index 377ed1b..05a5bbe 100755 (executable)
@@ -27,7 +27,7 @@ use C4::ImportBatch;
 use Koha::MarcOverlayRules;
 use Koha::Patron::Categories;
 
-my $input = new CGI;
+my $input = CGI->new;
 my $op = $input->param('op') || '';
 my $errors = [];