diff --git a/ChangeLog b/ChangeLog index a256364c2..57ad5fd0a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2009-11-30 Wolfgang Sourdeau + * UI/WebServerResources/SchedulerUI.js (initCalendars): the + "ShowCompletedTasks" parameter is in the UserSettings dictionary. + * SoObjects/SOGo/SOGoDefaultsSource.m (-migrateOldDefaultsWithDictionary:): when migrating between two existing keys, the new value is automatically overwritten with the diff --git a/UI/WebServerResources/SchedulerUI.js b/UI/WebServerResources/SchedulerUI.js index 88a4f1935..e5060af0d 100644 --- a/UI/WebServerResources/SchedulerUI.js +++ b/UI/WebServerResources/SchedulerUI.js @@ -2280,9 +2280,7 @@ function drawNowLine () { function initCalendars() { sorting["attribute"] = "start"; sorting["ascending"] = true; - /* FIXME: does this work at all? ShowCompletedTasks is in - UserSettings["Calendar"]... */ - showCompletedTasks = UserDefaults['ShowCompletedTasks']; + showCompletedTasks = UserSettings['ShowCompletedTasks']; if (!$(document.body).hasClassName("popup")) { var node = $("filterpopup");