]> git.koha-community.org Git - koha.git/commit
Stop unnecessary warnings in get_language
authorColin Campbell <colin.campbell@ptfs-europe.com>
Mon, 2 Apr 2012 14:06:28 +0000 (15:06 +0100)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Thu, 24 May 2012 00:50:30 +0000 (20:50 -0400)
commitb924d9c80f1847db70122faad606ad2067544afe
treeea3dbb5cc42ca18d5e594254b2c43708ca6d4116
parent358d6e51eb0a5b1a4741781cfa10ef70f283bae1
Stop unnecessary warnings in get_language

Refactor code to be more idiomatic and clarify its intention was testing
undef against languages causing log warn was creating and assigning to
unnecessary variables calling accept_language with an undef is an
expensive way to get undef returned to the caller test we are asking it
a meabingful question use any rather than first ( we dont care about
firstness it should be unique anyway but it obscures the meaning of the
test ) split takes a pattern not a string

Signed-off-by: Frédéric Demians <f.demians@tamil.fr>
Having put my hands recently in this part of Koha code, I can confirm
that this patch fix log warnings, and add clarity and conciseness.

http://bugs.koha-community.org/show_bug.cgi?id=7874
Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
C4/Templates.pm