Monotone-Parent: 11ef456e45cbaea55e39d4b6ddb6751f4f233acc

Monotone-Revision: 802a04b5081d0264febb32e1dcf222a8d0d1a263

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-12-06T16:04:04
This commit is contained in:
Wolfgang Sourdeau
2011-12-06 16:04:04 +00:00
parent a0afdf866f
commit 59017c5b94
2 changed files with 11 additions and 1 deletions
+7
View File
@@ -1,3 +1,10 @@
2011-12-06 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoAppointmentFolder.m
(_flattenCycleRecord:forRange:intoArray:): reverted to retrieving
the event start date using the old and buggy method, adapted to
the new NGCards API.
2011-12-05 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/MailerUI.js (deleteSelectedMessages)
@@ -903,7 +903,10 @@ firstInstanceCalendarDateRange: (NGCalendarDateRange *) fir
// Retrieve the range of the first/master event
component = [components objectAtIndex: 0];
dtstart = (iCalDateTime *) [component uniqueChildWithTag: @"dtstart"];
firstStartDate = [dtstart dateTime];
firstStartDate = [[[[dtstart valuesForKey: @""]
lastObject]
lastObject]
asCalendarDate];
firstEndDate = [firstStartDate addTimeInterval: [component occurenceInterval]];
firstRange = [NGCalendarDateRange calendarDateRangeWithStartDate: firstStartDate