From 68f1bbd115465950ba660166e6113d29369d6676 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 18 Sep 2015 08:10:27 +0000 Subject: [PATCH] Bug 14034: Fix logout on refresh for shibboleth This is similar to bug 12877 --- C4/Auth.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/C4/Auth.pm b/C4/Auth.pm index ef0c585..e0bf9ba 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -774,7 +774,9 @@ sub checkauth { $sessiontype = $session->param('sessiontype') || ''; } if ( ( $query->param('koha_login_context') && ( $q_userid ne $s_userid ) ) - || ( $cas && $query->param('ticket') && !C4::Context->userenv->{'id'} ) || ( $shib && $shib_login && !$logout ) ) { + || ( $cas && $query->param('ticket') && !C4::Context->userenv->{'id'} ) + || ( $shib && $shib_login && !$logout && !C4::Context->userenv->{'id'} ) + ) { #if a user enters an id ne to the id in the current session, we need to log them in... #first we need to clear the anonymous session... -- 1.7.10.4