]> 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:43 +0000 (20:50 -0400)
commitc62520cb10ac035167c7ca2146c8858325e76113
tree60d6a36f6c97b42f2121ed75ce7ddf91dae3ac0c
parenta5b81e3d59a40b3d89b0182e2a1f81f35e6105fb
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