Hi,
in the case where you use recurring event with no end dates in the scheduler, if you end-up calling the function checkInMarkedTimespan and pass multiple of those events, then it could hang the application cause it seems the event have a end year of 9999 and the function do a for/loop on the end_date.
Is this known as a problem?
Is there any solution ?
for (; temp_start_date < ev.end_date; temp_start_date = scheduler.date.date_part(temp_end_date), temp_end_date = scheduler.date.add(temp_start_date, 1, "day") ) {
Thanks