@@ -, +, @@ InstallAuth.pm Use of uninitialized value $info{"invalid_username_or_password"} in numeric eq (==) at /home/vagrant/kohaclone/C4/InstallAuth.pm line 387. 1) Go to the first page of the web-installer where it asks to login. 2) Observe the warning in the log file. 3) Apply patch. 4) Repeat step 1. 7) Check that previous warning suppressed. --- C4/InstallAuth.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/C4/InstallAuth.pm +++ a/C4/InstallAuth.pm @@ -384,7 +384,7 @@ sub checkauth { $template->param( login => 1 ); $template->param( loginprompt => 1 ) unless $info{'nopermission'}; - if ($info{'invalid_username_or_password'} == 1) { + if ($info{'invalid_username_or_password'} && $info{'invalid_username_or_password'} == 1) { $template->param( 'invalid_username_or_password' => $info{'invalid_username_or_password'}); } --