howdy!
this patch has 4 new filters:
start time after
start time before
end time after
end time before

not 100% tested but works for me
Argument can be a timestamp or any date string parseable by function strtotime()

Comments

karens’s picture

I'd be glad to consider adding this in if we can get a review or two posted.

dado’s picture

StatusFileSize
new7.21 KB

i checked the exact times that were being selected and i found it was selecting events whose start times were 4 hours after the time i passed in the argument (I am in Eastern Daylight time, which is GMT - 4 hours). I had been doing this, since the other event_views args functions were doing similar

$timezone = _views_get_timezone();
...
$datetime = $datetime - $timezone;

but i now believe this was wrong. So this patch removes the offending timezone code, and i find the argiments are working down to the minute.