8e48cb38 by Kevin Burton

bug fix - show tomorrows event for user reg in admin

1 parent 7f332a10
......@@ -108,8 +108,8 @@ $posts = query_posts(Array(
$is_archived = get_post_meta($post->ID, 'is_archived_webinar', true);
/*if (!$is_archived == "on") { continue; }*/
} else {
if ($event_date <= (time() + (60*60*24)) ) {
if ($event_date < (current_time('timestamp') - (60*60*24))) {
continue;
}
......