From 54c7b6f212f7cf53b0914118278eda0c4cbed69c Mon Sep 17 00:00:00 2001 From: SteveD Date: Sun, 3 Mar 2013 11:50:50 +0000 Subject: [PATCH] Issue #132 - change may assist, but not been able to replicate problem yet --- e107_plugins/calendar_menu/event.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e107_plugins/calendar_menu/event.php b/e107_plugins/calendar_menu/event.php index 0279881af..9bf5a7d27 100644 --- a/e107_plugins/calendar_menu/event.php +++ b/e107_plugins/calendar_menu/event.php @@ -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'];