[Seaside] [VW7.4.1] The page cannot be displayed

Carl Gundel carlg at libertybasic.com
Fri Jan 5 17:32:10 UTC 2007


>> So the fix would appear to be there alright.  Any thoughts?
>
>The second fix is in Smalltalk.VisualWave.Response>>writeCookies:
>
>Crossing fingers,

Yeah, this is in there too.  :-/

writeCookies: aStream
 self cookies isNil ifTrue: [^self].
 self cookies
  do:
   [:cookie | 
   cookie isNil
    ifFalse:
     [aStream
      nextPutAll:
        'Set-Cookie: ' , "A space needed by IE sometimes"
           "(self headerEncode:" cookie valueString")";
      crlf]].

-Carl



More information about the Seaside mailing list