aboutsummaryrefslogtreecommitdiffstats
path: root/functions
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 /functions
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 'functions')
-rw-r--r--functions/ical_parser.php2
-rw-r--r--functions/list_functions.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/functions/ical_parser.php b/functions/ical_parser.php
index dc43cc1..5119a1a 100644
--- a/functions/ical_parser.php
+++ b/functions/ical_parser.php
@@ -49,7 +49,7 @@ if ($save_parsed_cals == 'yes') {
$fname = $master_array['-4'][$z]['filename'];
$wcalc = $master_array['-4'][$z]['webcal'];
if ($wcalc == 'no') $realcal_mtime = filemtime($fname);
- $webcal_mtime = strtotime("now -$webcal_hours hours");
+ $webcal_mtime = time() - strtotime($webcal_hours * 3600);
if (($mtime == $realcal_mtime) && ($wcalc == 'no')) {
$y++;
} elseif (($wcalc == 'yes') && ($mtime > $webcal_mtime)) {
diff --git a/functions/list_functions.php b/functions/list_functions.php
index 5d62fb7..a14f5f6 100644
--- a/functions/list_functions.php
+++ b/functions/list_functions.php
@@ -3,7 +3,7 @@
function list_jumps() {
global $second_offset, $lang, $cal;
$calName = getCalendarName($cal);
- $today = date('Ymd', strtotime("now + $second_offset seconds"));
+ $today = date('Ymd', time() + $second_offset);
$return = '<option value="#">'.$lang['l_jump'].'</option>';
$return .= '<option value="day.php?cal='.$calName.'&amp;getdate='.$today.'">'.$lang['l_goday'].'</option>';
$return .= '<option value="week.php?cal='.$calName.'&amp;getdate='.$today.'">'.$lang['l_goweek'].'</option>';

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