From c53dab0e03fbb8fc1abf10843009bbd0d504c454 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 --- C4/Auth.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/C4/Auth.pm b/C4/Auth.pm index 823cb56c3a5..dd7d24b1f18 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -1711,6 +1711,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.25.1