diff --git a/mozilla/calendar/providers/memory/calMemoryCalendar.js b/mozilla/calendar/providers/memory/calMemoryCalendar.js index c7d0e5ebbb9..46fdaf7f80b 100644 --- a/mozilla/calendar/providers/memory/calMemoryCalendar.js +++ b/mozilla/calendar/providers/memory/calMemoryCalendar.js @@ -417,7 +417,7 @@ calMemoryCalendar.prototype = { { // there might be some recurrences here that we need to handle var recs = item.recurrenceInfo.getOccurrences (aRangeStart, aRangeEnd, 0, {}); - itemsFound = concat(itemsFound, recs); + itemsFound = itemsFound.concat(recs); } else if (itemEndTime >= startTime) { // no occurrences if (itemReturnOccurrences)