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

(-)a/C4/Auth_with_cas.pm (-1 / +1 lines)
Lines 33-39 our (@ISA, @EXPORT_OK); Link Here
33
BEGIN {
33
BEGIN {
34
    require Exporter;
34
    require Exporter;
35
    @ISA   = qw(Exporter);
35
    @ISA   = qw(Exporter);
36
    @EXPORT_OK = qw(check_api_auth_cas checkpw_cas login_cas logout_cas login_cas_url logout_if_required multilpleAuth getMultipleAuth);
36
    @EXPORT_OK = qw(check_api_auth_cas checkpw_cas login_cas logout_cas login_cas_url logout_if_required multipleAuth getMultipleAuth);
37
}
37
}
38
my $defaultcasserver;
38
my $defaultcasserver;
39
my $casservers;
39
my $casservers;
(-)a/opac/opac-user.pl (-1 / +1 lines)
Lines 57-62 my $query = CGI->new; Link Here
57
57
58
# CAS single logout handling
58
# CAS single logout handling
59
# Will print header and exit
59
# Will print header and exit
60
require C4::Auth_with_cas;
60
C4::Context->preference('casAuthentication') and C4::Auth_with_cas::logout_if_required($query);
61
C4::Context->preference('casAuthentication') and C4::Auth_with_cas::logout_if_required($query);
61
62
62
my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
63
my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
63
- 

Return to bug 28417