From ff932139ae17ea8376e4ffe9ce1629cb76216208 Mon Sep 17 00:00:00 2001 From: "daniel.boelzle%sun.com" Date: Fri, 27 Jul 2007 07:24:32 +0000 Subject: [PATCH] Bug 389036 - recurring task: only first instance is shown in agenda; r=dbo git-svn-id: svn://10.0.0.236/trunk@231099 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/calendar/lightning/content/agenda-tree.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/calendar/lightning/content/agenda-tree.js b/mozilla/calendar/lightning/content/agenda-tree.js index d4b2a675ede..b12b6c12ece 100644 --- a/mozilla/calendar/lightning/content/agenda-tree.js +++ b/mozilla/calendar/lightning/content/agenda-tree.js @@ -415,9 +415,9 @@ function refreshCalendarQuery() { var filter = this.calendar.ITEM_FILTER_CLASS_OCCURRENCES; if (document.getElementById("completed-tasks-checkbox").checked) { - filter = this.calendar.ITEM_FILTER_COMPLETED_ALL; + filter |= this.calendar.ITEM_FILTER_COMPLETED_ALL; } else { - filter = this.calendar.ITEM_FILTER_COMPLETED_NO; + filter |= this.calendar.ITEM_FILTER_COMPLETED_NO; } if (!this.filterType)