aboutsummaryrefslogtreecommitdiffstats
path: root/week.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 /week.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 'week.php')
-rw-r--r--week.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/week.php b/week.php
index 8903bb3..51a7673 100644
--- a/week.php
+++ b/week.php
@@ -9,7 +9,7 @@ $starttime = "0500";
$weekstart = 1;
$unix_time = strtotime($getdate);
$thisday2 = localizeDate($dateFormat_week_list, $unix_time);
-$today_today = date ('Ymd', $unix_time);
+$today_today = date('Ymd', strtotime("now + $second_offset seconds"));
$next_week = date("Ymd", strtotime("+1 week", $unix_time));
$prev_week = date("Ymd", strtotime("-1 week", $unix_time));
$tomorrows_date = date( "Ymd", strtotime("+1 day", $unix_time));

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