From d4e5ff53a332e7909d68164c333049a3fcef7f89 Mon Sep 17 00:00:00 2001 From: Alex Buckley Date: Sat, 8 Apr 2017 23:18:23 +0000 Subject: [PATCH] Bug 12930 - Implemented invalid_username_or_password template variable being handed to Auth.tt. Removed indentation changes and modification to return value of checkpw --- C4/InstallAuth.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/C4/InstallAuth.pm b/C4/InstallAuth.pm index c91bde8..6851214 100644 --- a/C4/InstallAuth.pm +++ b/C4/InstallAuth.pm @@ -379,6 +379,10 @@ sub checkauth { $template->param( login => 1 ); $template->param( loginprompt => 1 ) unless $info{'nopermission'}; + if ($info{'invalid_username_or_password'} == 1) { + $template->param( 'invalid_username_or_password' => $info{'invalid_username_or_password'}); + } + $template->param( \%info ); $cookie = $query->cookie( -name => 'CGISESSID', -- 2.1.4