Monotone-Parent: 07730dab75f3e59711482acaf62c0d6b6ef56a5e

Monotone-Revision: 0aa6da157615a44a87763825308c0f8aef065eb3

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-10-26T00:38:01
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2006-10-26 00:38:01 +00:00
parent 3d45a60a35
commit a0d1cf8de1
2 changed files with 4 additions and 0 deletions

View File

@ -6,6 +6,8 @@
hour" between the "sday" and "eday" date parameters passed in the
url. This permits to handle the display of the freebusy with Ajax
mechanisms.
([SOGoUserHomePage -_freeBusyAsText]): add 2 days to the end date
since the free busy displays 2 days ahead.
* UI/Contacts/UIxContactFoldersView.m ([UIxContactFoldersView
-contactSearchAction]): new action that returns the uid and the

View File

@ -326,6 +326,8 @@ static NSArray *internetAccessStates = nil;
inTimeZone: uTZ];
else
endDate = [startDate hour: 23 minute: 59];
endDate = [endDate dateByAddingYears: 0 months: 0 days: 2
hours: 0 minutes: 0 seconds: 0];
return [self _freeBusyAsTextFromStartDate: startDate toEndDate: endDate
forFreeBusy: co];