1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 20:30:39 +02:00

Issue #132 - change may assist, but not been able to replicate problem yet

This commit is contained in:
SteveD
2013-03-03 11:50:50 +00:00
parent 0558f43576
commit 54c7b6f212

View File

@@ -703,8 +703,8 @@ $calSc->setCalDate($dateArray); // Tell shortcodes the date to display
$calSc->catFilter = $cat_filter; // Category filter
$calSc->eventDisplayCodes = $EVENT_EVENT_DATETIME; // Templates for different event types
$monthstart = mktime(0, 0, 0, $month, 1, $year);
$monthend = mktime(0, 0, 0, $month + 1, 1, $year) -1 ;
$monthstart = gmmktime(0, 0, 0, $month, 1, $year);
$monthend = gmmktime(0, 0, 0, $month + 1, 1, $year) -1 ;
$nowmonth = $ecal_class->cal_date['mon'];
$nowyear = $ecal_class->cal_date['year'];