From be7f7e8b7cb64f85c557878c2a5aaaad584157f0 Mon Sep 17 00:00:00 2001 From: Alex Arnaud Date: Fri, 2 Dec 2011 09:19:33 +0100 Subject: [PATCH] bug/7285 Use C4::Auth::checkpw instead of checkpw only --- C4/ILSDI/Services.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/C4/ILSDI/Services.pm b/C4/ILSDI/Services.pm index 90f741a..067afd7 100644 --- a/C4/ILSDI/Services.pm +++ b/C4/ILSDI/Services.pm @@ -315,7 +315,7 @@ sub AuthenticatePatron { my ($cgi) = @_; # Check if borrower exists, using a C4::Auth function... - unless( checkpw( C4::Context->dbh, $cgi->param('username'), $cgi->param('password') ) ) { + unless( C4::Auth::checkpw( C4::Context->dbh, $cgi->param('username'), $cgi->param('password') ) ) { return { code => 'PatronNotFound' }; } -- 1.7.0.4