bug #372855 getOccurrencesBetween() in calTodo.js fails on tasks without entryDate or dueDate. patch by ssitter@googlemail.com, r=jminta

This commit is contained in:
michael.buettner%sun.com 2007-03-22 14:46:22 +00:00
Родитель 3f8d5f8110
Коммит 1ea9123b0a
2 изменённых файлов: 3 добавлений и 6 удалений

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

@ -1864,12 +1864,6 @@
(!aNewItem.entryDate || !aNewItem.dueDate || !this.calView.mTasksInView)) {
return;
}
occs = aOldItem.getOccurrencesBetween(this.calView.startDate,
this.calView.queryEndDate,
{});
for each (var occ in occs) {
this.calView.doDeleteEvent(occ);
}
occs = aNewItem.getOccurrencesBetween(this.calView.startDate,
this.calView.queryEndDate,

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

@ -564,6 +564,9 @@ function compareObjects(aObject, aOtherObject, aIID) {
* @param aDate the date or datetime to check
*/
function ensureDateTime(aDate) {
if (!aDate) {
return null;
}
if (!aDate.isDate) {
return aDate;
}