aboutsummaryrefslogtreecommitdiffstats
path: root/month.php
diff options
context:
space:
mode:
authorJim Hu <jimhu@users.sourceforge.net>2005-11-30 02:20:32 +0000
committerJim Hu <jimhu@users.sourceforge.net>2005-11-30 02:20:32 +0000
commit9a55eb6d834ac03de662c66a2b4df2418253bea0 (patch)
tree4a289cef630a997426265b384f11a3bf057ab712 /month.php
parentafc18a5da7a0673965dc76ead201e1521b0597eb (diff)
downloadphpicalendar-9a55eb6d834ac03de662c66a2b4df2418253bea0.tar.gz
phpicalendar-9a55eb6d834ac03de662c66a2b4df2418253bea0.tar.bz2
phpicalendar-9a55eb6d834ac03de662c66a2b4df2418253bea0.zip
change date calcs in several files for compatibility with some php installs that fail to calculate now+something
Diffstat (limited to 'month.php')
-rw-r--r--month.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/month.php b/month.php
index 0a08ea0..3efc4ac 100644
--- a/month.php
+++ b/month.php
@@ -13,7 +13,7 @@ $this_month = $day_array2[2];
$this_year = $day_array2[1];
$unix_time = strtotime($getdate);
-$today_today = date('Ymd', strtotime("now + $second_offset seconds"));
+$today_today = date('Ymd', time() + $second_offset);
$tomorrows_date = date('Ymd', strtotime("+1 day", $unix_time));
$yesterdays_date = date('Ymd', strtotime("-1 day", $unix_time));
$sidebar_date = localizeDate($dateFormat_week_list, $unix_time);

© 2014-2024 Faster IT GmbH | imprint | privacy policy