mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-21 19:35:38 +00:00
Monotone-Parent: 21911317257c6ad395e78e56a3d125fc4be404e6
Monotone-Revision: 5352547fba6d82f422f3bb300b39427b9ebf5653 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2009-01-21T16:20:11 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,14 @@
|
||||
2009-01-21 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/SOGo/SOGoGCSFolder.m ([SOGoGCSFolder
|
||||
-subscribe:reallyDoinTheNamesOf:delegatedUsersfromMailInvitation:isMailInvitationinContext:localContext]):
|
||||
explicitly set the content-type of the response to text/plain with
|
||||
charset='utf-8' to work-around a bug in Firefox, complaining about
|
||||
a hypothetical text/xml content he does not receive.
|
||||
* UI/Common/WODirectAction+SOGo.m ([WODirectAction
|
||||
-responseWith204]):
|
||||
same as above.
|
||||
|
||||
2009-01-19 Ludovic Marcotte <lmarcotte@inverse.ca>
|
||||
|
||||
* Main/SOGo.m
|
||||
|
||||
@@ -671,6 +671,9 @@ static NSArray *childRecordFields = nil;
|
||||
SOGoUser *currentUser;
|
||||
|
||||
response = [localContext response];
|
||||
[response setHeader: @"text/plain; charset=utf-8"
|
||||
forKey: @"Content-Type"];
|
||||
|
||||
currentUser = [localContext activeUser];
|
||||
|
||||
if (delegatedUsers && [delegatedUsers count])
|
||||
|
||||
@@ -63,7 +63,13 @@
|
||||
|
||||
- (WOResponse *) responseWith204
|
||||
{
|
||||
return [self responseWithStatus: 204];
|
||||
WOResponse *response;
|
||||
|
||||
response = [self responseWithStatus: 204];
|
||||
[response setHeader: @"text/plain; charset=utf-8"
|
||||
forKey: @"Content-Type"];
|
||||
|
||||
return response;
|
||||
}
|
||||
|
||||
- (WOResponse *) redirectToLocation: (NSString *) newLocation
|
||||
|
||||
Reference in New Issue
Block a user