From: Jeff Godin Date: Fri, 12 Oct 2012 14:53:33 +0000 (-0400) Subject: Remove extraneous cookie, pass -domain X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=0720ea1db7d8f7126bbe716fc2b32969e7f8da87;p=working%2FEvergreen.git Remove extraneous cookie, pass -domain Remember to pass -domain for the cookie we care about, and delete the cookie we do not care about. Signed-off-by: Jeff Godin --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader.pm b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader.pm index 54168eab6a..f3d1c0e8ed 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader.pm @@ -480,12 +480,6 @@ sub load_logout { -expires => '-1h' ), $self->cgi->cookie( - -name => COOKIE_SHARED_SES, - -path => '/', - -value => '', - -expires => '-1h' - ), - $self->cgi->cookie( -name => COOKIE_LOGGEDIN, -path => '/', -value => '', @@ -502,6 +496,7 @@ sub load_logout { $self->cgi->cookie( -name => COOKIE_SHARED_SES, -path => '/', + -domain => $shared_ses_domain, -value => '', -expires => '-1h' );