@@ -, +, @@ - There are CAS demo servers, pick one [1] - They all seem to have the same user/pass as of writing this: User: casuser Password: Mellon http://kohadev.myDNSname.org:8080 $ restart_all --- C4/Auth_with_cas.pm | 2 +- opac/opac-user.pl | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) --- a/C4/Auth_with_cas.pm +++ a/C4/Auth_with_cas.pm @@ -33,7 +33,7 @@ our (@ISA, @EXPORT_OK); BEGIN { require Exporter; @ISA = qw(Exporter); - @EXPORT_OK = qw(check_api_auth_cas checkpw_cas login_cas logout_cas login_cas_url logout_if_required multilpleAuth getMultipleAuth); + @EXPORT_OK = qw(check_api_auth_cas checkpw_cas login_cas logout_cas login_cas_url logout_if_required multipleAuth getMultipleAuth); } my $defaultcasserver; my $casservers; --- a/opac/opac-user.pl +++ a/opac/opac-user.pl @@ -57,6 +57,7 @@ my $query = CGI->new; # CAS single logout handling # Will print header and exit +require C4::Auth_with_cas; C4::Context->preference('casAuthentication') and C4::Auth_with_cas::logout_if_required($query); my ( $template, $borrowernumber, $cookie ) = get_template_and_user( --