From a9b9f7a1d8fbbe2b33a6d1343fc0cc9151908988 Mon Sep 17 00:00:00 2001 From: David Cook Date: Mon, 11 May 2020 10:49:15 +1000 Subject: [PATCH] Bug 25360: [Follow-up] Fix typo in C4/InstallAuth.pm --- C4/InstallAuth.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/InstallAuth.pm b/C4/InstallAuth.pm index dcbfdce4c4..63e1d2c18a 100644 --- a/C4/InstallAuth.pm +++ b/C4/InstallAuth.pm @@ -266,7 +266,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'); -- 2.16.4