@@ -, +, @@ 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(+) --- a/C4/InstallAuth.pm +++ a/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', --