Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1:/tmp/cvs-serv22020/functions
Modified Files:
init.inc.php
Log Message:
Added server offset in seconds.
Index: init.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init.inc.php,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** init.inc.php 16 Feb 2003 20:25:21 -0000 1.28
--- init.inc.php 9 May 2003 20:28:57 -0000 1.29
***************
*** 36,40 ****
$getdate = $HTTP_GET_VARS['getdate'];
} else {
! $getdate = date('Ymd');
}
}
--- 36,40 ----
$getdate = $HTTP_GET_VARS['getdate'];
} else {
! $getdate = date('Ymd', strtotime("now + $second_offset seconds"));
}
}
|