[Koha-bugs] [Bug 27483] Use Modern::Perl in other misc scripts

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Oct 29 20:54:56 CEST 2021


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27483

Tomás Cohen Arazi <tomascohen at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Needs Signoff               |Failed QA
                 CC|                            |tomascohen at gmail.com

--- Comment #6 from Tomás Cohen Arazi <tomascohen at gmail.com> ---
Hi, Eden.

The idea is to introduce

use Modern::Perl;

Modern::Perl implies 

use strict;
use warnings;

which is desirable. The idea is you should replace

use strict;
#use warnings;

for

use Modern::Perl;

and it will make some warnings show up. And those need to be fixed.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list