aboutsummaryrefslogtreecommitdiffstats
path: root/day.php
diff options
context:
space:
mode:
authorGreg Westin <westin@users.sourceforge.net>2003-06-26 18:08:45 +0000
committerGreg Westin <westin@users.sourceforge.net>2003-06-26 18:08:45 +0000
commit17ec5c7bb0a403603732869abc755e7d78ff470d (patch)
tree606bd43949a4b985230e2d3980a2400fef2ecb07 /day.php
parent15bfda509838439e19f418e30b5d99cd102ad21a (diff)
downloadphpicalendar-17ec5c7bb0a403603732869abc755e7d78ff470d.tar.gz
phpicalendar-17ec5c7bb0a403603732869abc755e7d78ff470d.tar.bz2
phpicalendar-17ec5c7bb0a403603732869abc755e7d78ff470d.zip
Fixed the problem of 'Go to Today' and similar links pointing to an incorrect date. It seems initialization of $today_today should be moved to functions/init.inc.php, but I didn't move it because I don't understand why any of the variables at the top of month.php, week.php, etc. are initialized there rather than in init.inc.php.
Diffstat (limited to 'day.php')
-rw-r--r--day.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/day.php b/day.php
index 89b6f21..cb44d8d 100644
--- a/day.php
+++ b/day.php
@@ -15,7 +15,7 @@ if ($minical_view == 'current') $minical_view = 'day';
$starttime = '0500';
$weekstart = 1;
$unix_time = strtotime($getdate);
-$today_today = date ('Ymd', $unix_time);
+$today_today = date('Ymd', strtotime("now + $second_offset seconds"));
$tomorrows_date = date( 'Ymd', strtotime('+1 day', $unix_time));
$yesterdays_date = date( 'Ymd', strtotime('-1 day', $unix_time));
$display_date = localizeDate($dateFormat_day, $unix_time);

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