[Koha-bugs] [Bug 8895] Warning in systempreferences.pl: Use of uninitialized value in length...

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Oct 25 15:43:08 CEST 2012


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8895

Jonathan Druart <jonathan.druart at biblibre.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jonathan.druart at biblibre.co
                   |                            |m

--- Comment #5 from Jonathan Druart <jonathan.druart at biblibre.com> ---
QA comments:

1/ The line:
    unless (defined $data->{value}) { $data->{value} = "";}
could be wrote as:
    $data->{value} //= "";
(with Modern::Perl).

2/ The Bug 2505 collects this kind of patch :)

3/ The line 424 has a useless test if defined( $data->{value} )

Marked as Failed QA for 3

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


More information about the Koha-bugs mailing list