diff --git a/ChangeLog b/ChangeLog index 99889aa7a..015c8e34b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2009-07-19 Wolfgang Sourdeau + * UI/SOGoUI/UIxComponent.m (-responseWithStatus:): revert the + default content-type to text/plain; charset=utf-8. + * UI/WebServerResources/SchedulerUI.js: initialize the "listFilter" global var depending on the value of the filter popup. diff --git a/UI/SOGoUI/UIxComponent.m b/UI/SOGoUI/UIxComponent.m index 6d3f19fd1..849d73c67 100644 --- a/UI/SOGoUI/UIxComponent.m +++ b/UI/SOGoUI/UIxComponent.m @@ -604,6 +604,8 @@ static BOOL uixDebugEnabled = NO; response = [context response]; [response setStatus: status]; + [response setHeader: @"text/plain; charset=utf-8" + forKey: @"content-type"]; return response; }