Index: openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl,v diff -u -r1.70.2.1 -r1.70.2.2 --- openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl 22 Mar 2004 02:46:03 -0000 1.70.2.1 +++ openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl 25 Mar 2004 13:54:16 -0000 1.70.2.2 @@ -2351,14 +2351,14 @@ if { ![string equal $expire "t"] } { # netscape seemed unhappy with huge max-age, so we use # expires which seems to work on both netscape and IE - append cookie "; Expires=Fri, 01-Jan-2035 01:00:00 GMT" + append cookie "; Expires=Mon, 01-Jan-2035 01:00:00 GMT" } } elseif { $max_age != "" } { append cookie "; Max-Age=$max_age" } if { [string equal $expire "t"] } { - append cookie "; Expires=Fri, 01-Jan-1980 01:00:00 GMT" + append cookie "; Expires=Tue, 01-Jan-1980 01:00:00 GMT" } if { $domain != "" } { Index: openacs-4/packages/acs-templating/tcl/util-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/util-procs.tcl,v diff -u -r1.17 -r1.17.2.1 --- openacs-4/packages/acs-templating/tcl/util-procs.tcl 11 Dec 2003 21:39:57 -0000 1.17 +++ openacs-4/packages/acs-templating/tcl/util-procs.tcl 25 Mar 2004 13:53:54 -0000 1.17.2.1 @@ -564,7 +564,7 @@ switch $expire_state { persistent { - append cookie ";expires=Fri, 01-Jan-2020 01:00:00 GMT" + append cookie ";expires=Wed, 01-Jan-2020 01:00:00 GMT" } "" - @@ -590,7 +590,7 @@ } set cookie "$name=expired; path=/; domain=$domain;" - append cookie "expires=Fri, 01-Jan-1980 01:00:00 GMT" + append cookie "expires=Tue, 01-Jan-1980 01:00:00 GMT" ns_set put [ns_conn outputheaders] "Set-Cookie" $cookie }