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

(-)a/C4/Auth.pm (-1 lines)
Lines 1288-1294 sub checkauth { Link Here
1288
        casAuthentication                     => C4::Context->preference("casAuthentication"),
1288
        casAuthentication                     => C4::Context->preference("casAuthentication"),
1289
        shibbolethAuthentication              => $shib,
1289
        shibbolethAuthentication              => $shib,
1290
        suggestion                            => C4::Context->preference("suggestion"),
1290
        suggestion                            => C4::Context->preference("suggestion"),
1291
        SessionRestrictionByIP                => C4::Context->preference("SessionRestrictionByIP"),
1292
        virtualshelves                        => C4::Context->preference("virtualshelves"),
1291
        virtualshelves                        => C4::Context->preference("virtualshelves"),
1293
        LibraryName                           => "" . C4::Context->preference("LibraryName"),
1292
        LibraryName                           => "" . C4::Context->preference("LibraryName"),
1294
        LibraryNameTitle                      => "" . $LibraryNameTitle,
1293
        LibraryNameTitle                      => "" . $LibraryNameTitle,
(-)a/opac/opac-tags.pl (-2 / +1 lines)
Lines 69-75 sub ajax_auth_cgi { # returns CGI object Link Here
69
    my %cookies = CGI::Cookie->fetch;
69
    my %cookies = CGI::Cookie->fetch;
70
	my $input = CGI->new;
70
	my $input = CGI->new;
71
    my $sessid = $cookies{'CGISESSID'}->value;
71
    my $sessid = $cookies{'CGISESSID'}->value;
72
	my ($auth_status) = check_cookie_auth($sessid, $needed_flags);
72
    my ($auth_status) = check_cookie_auth($sessid, $needed_flags);
73
	if ($auth_status ne "ok") {
73
	if ($auth_status ne "ok") {
74
		output_with_http_headers $input, undef,
74
		output_with_http_headers $input, undef,
75
		"window.alert('Your CGI session cookie ($sessid) is not current.  " .
75
		"window.alert('Your CGI session cookie ($sessid) is not current.  " .
76
- 

Return to bug 28785