diff --git a/ChangeLog b/ChangeLog index 992cc0278..342cd380d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,12 @@ -2011-03-17 francis +2011-03-18 Francis Lachapelle + + * UI/WebServerResources/SchedulerUI.js (initCalendars): we must + set "showCompletedTasks" earlier in order to properly fetch the + tasks upon the first refresh. + +2011-03-17 Francis Lachapelle + + * SoObjects/Appointments/iCalEvent+SOGo.m (-quickRecord): * UI/MailerUI/UIxMailAccountActions.m (-listMailboxesAction): moved code that fetches the inbox quota to [SOGoMailAccount getInboxQuota]. @@ -16,7 +24,7 @@ extracted from updateMailboxTreeInPage. It is called when a folder operation returns the inbox quota. -2011-03-15 francis +2011-03-15 Francis Lachapelle * UI/MailerUI/UIxMailListActions.m (-getMailAction): removed this method that is no longer used since live-loading. diff --git a/UI/WebServerResources/SchedulerUI.js b/UI/WebServerResources/SchedulerUI.js index d7480bb4d..6b21df15e 100644 --- a/UI/WebServerResources/SchedulerUI.js +++ b/UI/WebServerResources/SchedulerUI.js @@ -2917,10 +2917,10 @@ function initCalendars() { var controller = new SOGoTabsController(); controller.attachToTabsContainer(tabsContainer); + showCompletedTasks = parseInt(UserSettings['ShowCompletedTasks']); initDateSelectorEvents(); initCalendarSelector(); configureSearchField(); - showCompletedTasks = parseInt(UserSettings['ShowCompletedTasks']); configureLists(); $("calendarList").attachMenu("calendarsMenu"); $(document.body).observe("click", onBodyClickHandler);