@@ -, +, @@ --- C4/InstallAuth.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/C4/InstallAuth.pm +++ a/C4/InstallAuth.pm @@ -267,7 +267,7 @@ sub checkauth { -name => 'CGISESSID', -value => $session->id, -HttpOnly => 1, - -secure => ( C4::Context->https_enabled() } ? 1 : 0 ), + -secure => ( C4::Context->https_enabled() ? 1 : 0 ), ); $loggedin = 1; $userid = $session->param('cardnumber'); --