From c96e11338a1c7769b63633925c3eebc98e4097fa Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 24 Jan 2022 14:23:29 +0000 Subject: [PATCH] Bug 29914: (QA follow-up) Add comment to explain last case Signed-off-by: Nick Clemens JD amended patch: remove ref to line number (cherry picked from commit a866722ae620f435c3c5e1933a83f7b82927c108) Signed-off-by: Victor Grousset/tuxayo --- C4/Auth.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/C4/Auth.pm b/C4/Auth.pm index e9b8c0e8d9..62094e8a8d 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -1842,6 +1842,8 @@ sub check_cookie_auth { } else { return ( "anon", $session ); } + # If here user was logged in, but doesn't have correct permissions + # could be an 'else' at `if($flags) return "ok"` , but left here to catch any errors $session->delete(); $session->flush; C4::Context->_unset_userenv($sessionID); -- 2.39.5