| Description: | I'm dependent on the Upcoming menu ( rave.ca ) on the top bar and a few times I'm getting prepared to get there late, which is still early for most people, but the event disappeared from the Upcoming menu ...
I'm pretty sure the culprit is because there's no ending time so the job scheduler (cron) removes it right after it started. If that assumption is true, there should be a default event length either when entering it or, much practical, on the job scheduler removal like:
IF time > event end time OR time > (event start time + default event length) THEN
remove event from Upcoming menu
ENDIF
Of course the second condition wouldn't be evaluated if the first is. Arrrgh ! I actually had to look at a pseudo-code tutorial about 10 years since I last had to ... |