Fixing regression bug 160151.

git-svn-id: svn://10.0.0.236/trunk@126111 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mikep%oeone.com
2002-07-31 14:57:57 +00:00
parent 23b18f81aa
commit 94ef0f70d0

View File

@@ -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 );