From 8e8c5c4b88df1abcebbe13bf127570e668dce98b Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Wed, 16 Jun 2010 21:15:34 +0000 Subject: [PATCH] Monotone-Parent: 8fb969e757a4404632a8e53c60633563b80e39d4 Monotone-Revision: f0bbd5c2ee25d0180b238170194330bf01bfa9fd Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-06-16T21:15:34 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 4 ++++ UI/Scheduler/UIxCalListingActions.m | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 01f5ee2b0..fe91e57e0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-06-16 Wolfgang Sourdeau + * 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. diff --git a/UI/Scheduler/UIxCalListingActions.m b/UI/Scheduler/UIxCalListingActions.m index afe732cfb..dd6ab8986 100644 --- a/UI/Scheduler/UIxCalListingActions.m +++ b/UI/Scheduler/UIxCalListingActions.m @@ -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;