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)
committerPaul Poulain <paul.poulain@biblibre.com>
Fri, 29 Jun 2012 14:16:55 +0000 (16:16 +0200)
commit36f1fb630852ce33f23299e530c2d9633455ee77
tree988e60663fa3495a426a729cfa8bfc2f01f51632
parent3ba842656448962734b1e9e43678b44c55491cc9
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>
C4/Auth.pm