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

(-)a/C4/Auth.pm (-1 / +1 lines)
Lines 86-92 BEGIN { Link Here
86
        }
86
        }
87
    }
87
    }
88
    if ($cas) {
88
    if ($cas) {
89
        import C4::Auth_with_cas qw(check_api_auth_cas checkpw_cas login_cas logout_cas login_cas_url logout_required);
89
        import C4::Auth_with_cas qw(check_api_auth_cas checkpw_cas login_cas logout_cas login_cas_url logout_if_required);
90
    }
90
    }
91
91
92
}
92
}
(-)a/C4/Auth_with_cas.pm (-1 / +1 lines)
Lines 35-41 BEGIN { Link Here
35
	require Exporter;
35
	require Exporter;
36
	$debug = $ENV{DEBUG};
36
	$debug = $ENV{DEBUG};
37
	@ISA    = qw(Exporter);
37
	@ISA    = qw(Exporter);
38
	@EXPORT = qw(check_api_auth_cas checkpw_cas login_cas logout_cas login_cas_url);
38
	@EXPORT = qw(check_api_auth_cas checkpw_cas login_cas logout_cas login_cas_url logout_if_required);
39
}
39
}
40
my $defaultcasserver;
40
my $defaultcasserver;
41
my $casservers;
41
my $casservers;
(-)a/opac/opac-user.pl (-2 / +1 lines)
Lines 64-70 BEGIN { Link Here
64
64
65
# CAS single logout handling
65
# CAS single logout handling
66
# Will print header and exit
66
# Will print header and exit
67
C4::Context->preference('casAuthentication') and C4::Auth_with_ldap::logout_if_required($query);
67
C4::Context->preference('casAuthentication') and C4::Auth_with_cas::logout_if_required($query);
68
68
69
my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
69
my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
70
    {
70
    {
71
- 

Return to bug 19160