From 0cf1777bf2b3b54bd7a79a2c9e68b63d3186c3f0 Mon Sep 17 00:00:00 2001 From: "dmose%mozilla.org" Date: Sun, 26 Feb 2006 01:00:49 +0000 Subject: [PATCH] Disabling recurring todos until bug 328197 is sorted out. Thanks to for the patch, r=dmose. --- calendar/base/content/calendar-event-dialog.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/calendar/base/content/calendar-event-dialog.js b/calendar/base/content/calendar-event-dialog.js index aaba2f5d093..14f6224ba57 100644 --- a/calendar/base/content/calendar-event-dialog.js +++ b/calendar/base/content/calendar-event-dialog.js @@ -76,6 +76,10 @@ function onLoad() // update the accept button updateAccept(); + // disabling recurring todo until bug 328197 is fixed + if (isToDo(window.calendarItem)) + disableElement("item-recurrence"); + // update datetime pickers updateDueDate(); updateEntryDate();