From 94ef0f70d0fcf166bd757bbc221ae64005c6d6c2 Mon Sep 17 00:00:00 2001 From: "mikep%oeone.com" Date: Wed, 31 Jul 2002 14:57:57 +0000 Subject: [PATCH] Fixing regression bug 160151. git-svn-id: svn://10.0.0.236/trunk@126111 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/calendar/resources/content/calendarEvent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/calendar/resources/content/calendarEvent.js b/mozilla/calendar/resources/content/calendarEvent.js index 440a6b7eb03..1af04dfca58 100644 --- a/mozilla/calendar/resources/content/calendarEvent.js +++ b/mozilla/calendar/resources/content/calendarEvent.js @@ -468,7 +468,7 @@ CalendarEventDataSource.prototype.getAllFutureEvents = function() var Today = new Date(); //do this to allow all day events to show up all day long - var Start = new Date( Today.getFullYear(), Today.getDay(), Today.getMonth(), 0, 0, 0 ); + var Start = new Date( Today.getFullYear(), Today.getMonth(), Today.getDate(), 0, 0, 0 ); var Infinity = new Date( Today.getFullYear()+100, 31, 11 );