aboutsummaryrefslogtreecommitdiffstats
path: root/month.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 /month.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 'month.php')
-rw-r--r--month.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/month.php b/month.php
index af08c88..1b8431d 100644
--- a/month.php
+++ b/month.php
@@ -11,7 +11,7 @@ $this_month = $day_array2[2];
$this_year = $day_array2[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));
$date = mktime(0,0,0,"$this_month","$this_day","$this_year");

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