Hi,
I have this event:
{“start_date”:“2016-03-07 09:00:00”,
“end_date”:“2016-03-14 00:00:00”,
“event_pid”:0,
“event_length”:32400,
“rec_type”:“day_1___”,
“id”:282839,
“text”:“Education - Teaching”}
and it works fine. I’d like to hide the recurring event on the weekend (or better, I’d like to don’t recurring event on weekend), so I write this
“rec_type”:“day_1___1,2,3,4,5”
But I’ve got this error: “too much recursion”
Strange behavior, these combinations work:
“day_1___0,1,2,3,4,5”,“day_1___0,2,3,4,5”, works all combinations start with 0 (Sunday)!
I’ve got the option scheduler.config.start_on_monday = true but with false, doesn’t work even the combinations above (starting with 0), neither the day_1___1,2,3,4,5
Thanks in advance
Cheers
Matteo