[Koha-bugs] [Bug 9312] strict perl for picture-upload.pl

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Jul 19 09:52:20 CEST 2013


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

Srdjan Jankovic <srdjan at catalyst.net.nz> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |srdjan at catalyst.net.nz

--- Comment #23 from Srdjan Jankovic <srdjan at catalyst.net.nz> ---
opendir RECDIR, $recursive_dir

is much better written as

opendir my $recdir, $recursive_dir

That way no close is needed, it closes itself when goes out of scope (globs are
passe :)

If you choose to stick with globs, I'll sign it off as is.

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


More information about the Koha-bugs mailing list