diff --git a/ChangeLog b/ChangeLog index 1a506694e..d13f95d6c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2007-09-05 Wolfgang Sourdeau + * UI/MainUI/SOGoRootPage.m ([SOGoRootPage + -isPublicInContext:localContext]): new overriden method that + returns YES. + * UI/Scheduler/UIxCalendarSelector.m ([UIxCalendarSelector -currentCalendarLogin]): replace css-unsafe characters with _. diff --git a/UI/MainUI/SOGoRootPage.m b/UI/MainUI/SOGoRootPage.m index 01801d0f0..f99b4e9e9 100644 --- a/UI/MainUI/SOGoRootPage.m +++ b/UI/MainUI/SOGoRootPage.m @@ -138,4 +138,9 @@ [super appendToResponse: response inContext: ctx]; } +- (BOOL) isPublicInContext: (WOContext *) localContext +{ + return YES; +} + @end /* SOGoRootPage */