diff --git a/ChangeLog b/ChangeLog index 012f73bf1..d542f488f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-09-04 Wolfgang Sourdeau + * UI/MainUI/SOGoUserHomePage.m ([SOGoUserHomePage -logoffAction]): + set the cookie path to "/". + * Main/SOGo.m ([SOGo -authenticatorInContext:_ctx]): choose the authenticator based on the request handler key. "dav" returns the SOGoDAVAuthenticator, anything else returns the Web authenticator. diff --git a/UI/MainUI/SOGoUserHomePage.m b/UI/MainUI/SOGoUserHomePage.m index 572ee1aa8..6f211ce67 100644 --- a/UI/MainUI/SOGoUserHomePage.m +++ b/UI/MainUI/SOGoUserHomePage.m @@ -218,6 +218,7 @@ static NSString *defaultModule = nil; auth = [[self clientObject] authenticatorInContext: context]; cookie = [WOCookie cookieWithName: [auth cookieNameInContext: context] value: @"logoff"]; + [cookie setPath: @"/"]; [response addCookie: cookie]; return response;