diff --git a/ChangeLog b/ChangeLog index 327220f8f..514f2561c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-04-23 Wolfgang Sourdeau + + * SoObjects/SOGo/SOGoContentObject.m ([SOGoContentObject + -davContentLength]): the content length should is now based on the + UTF-8 encoding. + 2008-04-22 Wolfgang Sourdeau * UI/Scheduler/UIxCalendarSelector.m ([UIxCalendarSelector diff --git a/SoObjects/SOGo/SOGoContentObject.m b/SoObjects/SOGo/SOGoContentObject.m index a4bfbc377..af4e3b531 100644 --- a/SoObjects/SOGo/SOGoContentObject.m +++ b/SoObjects/SOGo/SOGoContentObject.m @@ -344,7 +344,7 @@ content = [record objectForKey: @"c_content"]; return [NSString stringWithFormat: @"%u", - [content lengthOfBytesUsingEncoding: NSISOLatin1StringEncoding]]; + [content lengthOfBytesUsingEncoding: NSUTF8StringEncoding]]; } - (NSException *) davMoveToTargetObject: (id) _target