View | Details | Raw Unified | Return to bug 18046
Collapse All | Expand All

(-)a/C4/Auth_with_cas.pm (-1 / +1 lines)
Lines 66-71 sub getMultipleAuth { Link Here
66
sub logout_cas {
66
sub logout_cas {
67
    my ($query, $type) = @_;
67
    my ($query, $type) = @_;
68
    my ( $cas, $uri ) = _get_cas_and_service($query, undef, $type);
68
    my ( $cas, $uri ) = _get_cas_and_service($query, undef, $type);
69
    $uri =~ s/\?logout\.x=1//; # We don't want to keep triggering a logout, if we got here, the borrower is already logged out of Koha
69
    print $query->redirect( $cas->logout_url(url => $uri));
70
    print $query->redirect( $cas->logout_url(url => $uri));
70
}
71
}
71
72
72
- 

Return to bug 18046