This commit is contained in:
mikep%oeone.com 2003-01-16 20:26:44 +00:00
Родитель ce8790d388
Коммит f7ee8a789a
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -508,8 +508,8 @@ function checkEndTime()
function checkEndDate()
{
// Bad to get into floats.
var startDate = Math.floor(document.getElementById( "start-date-picker" ).value.getTime()/86400000);
var endDate = Math.floor(document.getElementById( "end-date-picker" ).value.getTime()/86400000);
var startDate = document.getElementById( "start-date-picker" ).value;
var endDate = document.getElementById( "end-date-picker" ).value;
if( startDate.getFullYear() == endDate.getFullYear() &&
startDate.getMonth() == endDate.getMonth() &&