Monotone-Parent: 8fb969e757a4404632a8e53c60633563b80e39d4

Monotone-Revision: f0bbd5c2ee25d0180b238170194330bf01bfa9fd

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-06-16T21:15:34
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-06-16 21:15:34 +00:00
parent 01042ec50f
commit 8e8c5c4b88
2 changed files with 6 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
2010-06-16 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/Scheduler/UIxCalListingActions.m
(_fillBlocks:withEvent:withNumber:): "c_iscycle" and "c_recurrence_id"
have position 13 and 15 instead of 12 and 13, respectively.
* SoObjects/Mailer/SOGoDraftObject.m
(_purgeRecipients:fromAddresses:): we need to compare the email
addresses case-insensitively.

View File

@@ -692,8 +692,8 @@ _userStateInEvent (NSArray *event)
startSecs = (unsigned int) [startDate timeIntervalSince1970];
endsSecs = (unsigned int) [endDate timeIntervalSince1970];
if ([[event objectAtIndex: 12] boolValue]) // c_iscycle
recurrenceTime = [[event objectAtIndex: 14] unsignedIntValue]; // c_recurrence_id
if ([[event objectAtIndex: 13] boolValue]) // c_iscycle
recurrenceTime = [[event objectAtIndex: 15] unsignedIntValue]; // c_recurrence_id
else
recurrenceTime = 0;