diff --git a/ChangeLog b/ChangeLog index 707e15ea2..fb9909e3d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2010-03-15 Wolfgang Sourdeau + * SoObjects/Appointments/SOGoAppointmentFolder.m + (-initWithName:inContainer:): "davTimeLimitSeconds" and + "davTimeHalfLimitSeconds" were erroneously reverted to 0 after + initialization. + * UI/WebServerResources/SchedulerUIDnD.js (onDragStart): typo. * UI/WebServerResources/SchedulerUI.js (_setupEventsDragAndDrop): diff --git a/SoObjects/Appointments/SOGoAppointmentFolder.m b/SoObjects/Appointments/SOGoAppointmentFolder.m index 07137cf17..48b058a85 100644 --- a/SoObjects/Appointments/SOGoAppointmentFolder.m +++ b/SoObjects/Appointments/SOGoAppointmentFolder.m @@ -248,9 +248,6 @@ static NSNumber *sharedYes = nil; /* 86400 / 2 = 43200. We hardcode that value in order to avoid integer and float confusion. */ davTimeHalfLimitSeconds = davCalendarStartTimeLimit * 43200; - - davTimeLimitSeconds = 0; - davTimeHalfLimitSeconds = 0; } return self;