https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18046 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|major |critical --- Comment #2 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Upping severity a bit as this is a problem for end users in the OPAC and it looks like Koha is killing the browser. We fixed it temporarily by removing the logout.x=1 from the URL used for redirecting on logout: sub logout_cas { my ($query, $type) = @_; my ( $cas, $uri ) = _get_cas_and_service($query, undef, $type); + $uri =~ s/\?logout\.x=1//; print $query->redirect( $cas->logout_url(url => $uri)); } -- You are receiving this mail because: You are watching all bug changes.