[OGo-Developer] Bug in -[WOCookie initWithName:value:path:domain:expires:isSecure:]

Stéphane Corthésy developer@opengroupware.org
Fri, 15 Feb 2008 17:00:22 +0100


Hi,

There's a bug in sope-appserver/NGObjWeb/WOCookie.m, in -[WOCookie  
initWithName:value:path:domain:expires:isSecure:]:

The line

     self->expireDate   = [expireDate retain];


should be

     self->expireDate   = [_date retain];


Stéphane