8e48cb38 by Kevin Burton

bug fix - show tomorrows event for user reg in admin

1 parent 7f332a10
...@@ -109,7 +109,7 @@ $posts = query_posts(Array( ...@@ -109,7 +109,7 @@ $posts = query_posts(Array(
109 /*if (!$is_archived == "on") { continue; }*/ 109 /*if (!$is_archived == "on") { continue; }*/
110 } else { 110 } else {
111 111
112 if ($event_date <= (time() + (60*60*24)) ) { 112 if ($event_date < (current_time('timestamp') - (60*60*24))) {
113 continue; 113 continue;
114 } 114 }
115 115
......