Update of /cvsroot/phpicalendar/phpicalendar
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv28460
Modified Files:
config.inc.php
Log Message:
progress on timezones and daylight time
Index: config.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v
retrieving revision 1.182
retrieving revision 1.183
diff -C2 -d -r1.182 -r1.183
*** config.inc.php 24 Dec 2008 21:09:31 -0000 1.182
--- config.inc.php 25 Dec 2008 18:45:26 -0000 1.183
***************
*** 5,9 ****
In version 2.3, there has been a change in the way configuration works in order to reduce the number of confusing global variables. Unfortunately, this means that config.inc.php files from older installations will have to be translated to the new format. The conversion is simple: use the old variable names as array keys for the $configs array below:
*/
!
$configs = array(
# 'calendar_path' => '/Library/WebServer/Documents/phpicalendar/calendars',
--- 5,9 ----
In version 2.3, there has been a change in the way configuration works in order to reduce the number of confusing global variables. Unfortunately, this means that config.inc.php files from older installations will have to be translated to the new format. The conversion is simple: use the old variable names as array keys for the $configs array below:
*/
! $secs = 6*60*60;
$configs = array(
# 'calendar_path' => '/Library/WebServer/Documents/phpicalendar/calendars',
***************
*** 14,17 ****
--- 14,19 ----
# 'show_search' => 'yes',
# 'show_todos' => 'no',
+ 'timezone' => 'US/Central',
+ # 'second_offset' => $secs,
# 'cookie_uri' => ''
);
|