Monotone-Parent: e0e6c176d8cb78a7e264cc9d2f05c2cf5bfb77f5

Monotone-Revision: fe708fac93fc55eeea8eeef0dedf137ce1316fd0

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-11-05T22:56:08
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2010-11-05 22:56:08 +00:00
parent 982f6abf97
commit f8dd432d65
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2010-11-05 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoAptMailReceipt.m (-getSubject)
(-getBody): invoked setupValues if values is nil to ensure that
the timezone has been set properly.
2010-11-04 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* Tools/SOGoSockDOperation.m (_getFolderWithId:forUser:): invoke

View File

@ -76,6 +76,9 @@ static NSCharacterSet *wsSet = nil;
{
NSString *subject;
if (!values)
[self setupValues];
isSubject = YES;
subject = [[[self generateResponse] contentAsString]
stringByTrimmingCharactersInSet: wsSet];
@ -94,6 +97,9 @@ static NSCharacterSet *wsSet = nil;
{
NSString *body;
if (!values)
[self setupValues];
isSubject = NO;
body = [[self generateResponse] contentAsString];