[Koha-bugs] [Bug 18046] Problem with redirect on logout with CAS

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Feb 24 12:56:44 CET 2017


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18046

Katrin Fischer <katrin.fischer at bsz-bw.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|major                       |critical

--- Comment #2 from Katrin Fischer <katrin.fischer at 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.


More information about the Koha-bugs mailing list