]> git.koha-community.org Git - koha.git/commit
Bug 8311: Fix scoping error in C4::Auth
authorJared Camins-Esakov <jcamins@cpbibliography.com>
Mon, 25 Jun 2012 16:11:35 +0000 (12:11 -0400)
committerChris Cormack <chrisc@catalyst.net.nz>
Fri, 29 Jun 2012 21:46:06 +0000 (09:46 +1200)
commit19ad4e1125cf1f2a01abed7b777c7b20e6d68303
treed11361e4bd83e0410a3baf8eca3bf866e90a7027
parent6e5962988c5c969b43a0c83d2a2c4538f0681cbb
Bug 8311: Fix scoping error in C4::Auth

There is a mis-scoped function call in C4::Auth, on line 154, where
GetMembers is called without explicit scoping and before
'require C4::Members;'. This does not actually have any functional
ramifications as far as I can tell, but it would be a good idea to fix
it.

This patch also corrects a bit of indenting in that area, because it was
an unnecessary challenge to understand the code with the mis-indenting.

Signed-off-by: Marc Veron <veron@veron.ch>
Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
C4/Auth.pm