Quote:
Originally Posted by Dylanblitz
If you want to show previous dates you can modify this line 240
PHP Code:
$event_query = $db->query_read("SELECT ce.*, cu.username, cc.title AS CalendarName FROM " . TABLE_PREFIX . "event ce LEFT JOIN " . TABLE_PREFIX . "user cu ON ce.userid = cu.userid LEFT JOIN " . TABLE_PREFIX . "calendar cc ON ce.calendarid = cc.calendarid WHERE ce.visible = '1' && dateline_from > '$thisdate'" . $search_vars . " ORDER BY " . $chksort . " " . $chkorder . " LIMIT " . ($limitlower - 1) . ", " . $perpage);
Change it to
PHP Code:
$event_query = $db->query_read("SELECT ce.*, cu.username, cc.title AS CalendarName FROM " . TABLE_PREFIX . "event ce LEFT JOIN " . TABLE_PREFIX . "user cu ON ce.userid = cu.userid LEFT JOIN " . TABLE_PREFIX . "calendar cc ON ce.calendarid = cc.calendarid WHERE ce.visible = '1'" . $search_vars . " ORDER BY " . $chksort . " " . $chkorder . " LIMIT " . ($limitlower - 1) . ", " . $perpage);
|
Thank You Very Much,
Dylanblitz. :up:
I removed the
Quote:
&& dateline_from > '$thisdate'
|
and is Working Great.:up:
This is a Great Mod, Very Important for Boards that Use the Calendar Tool. :up:
My Best Regards, and Thank You Very Much For Sharing This Great Mod. :up: