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

(-)a/C4/Auth.pm (-2 / +1 lines)
Lines 982-988 sub checkauth { Link Here
982
982
983
        # voluntary logout the user
983
        # voluntary logout the user
984
        # check wether the user was using their shibboleth session or a local one
984
        # check wether the user was using their shibboleth session or a local one
985
        my $shibSuccess = C4::Context->userenv->{'shibboleth'};
985
        my $shibSuccess = C4::Context->userenv ? C4::Context->userenv->{'shibboleth'} : undef;
986
        if ( $session ) {
986
        if ( $session ) {
987
            $session->delete();
987
            $session->delete();
988
            $session->flush;
988
            $session->flush;
989
- 

Return to bug 31244