Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4488/phpicalendar/functions
Modified Files:
date_functions.php init.inc.php
Log Message:
roll back experimental feature
Index: date_functions.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/date_functions.php,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -d -r1.36 -r1.37
*** date_functions.php 12 Nov 2006 07:34:34 -0000 1.36
--- date_functions.php 12 Nov 2006 08:06:30 -0000 1.37
***************
*** 245,249 ****
if (preg_match('/^'.$property.';TZID=/i', $field)) {
$tz_tmp = explode('=', $field);
! $tz_dt = $tz_tmp[1];
unset($tz_tmp);
} elseif ($zulu_time) {
--- 245,249 ----
if (preg_match('/^'.$property.';TZID=/i', $field)) {
$tz_tmp = explode('=', $field);
! $tz_dt = parse_tz($tz_tmp[1]);
unset($tz_tmp);
} elseif ($zulu_time) {
Index: init.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init.inc.php,v
retrieving revision 1.103
retrieving revision 1.104
diff -C2 -d -r1.103 -r1.104
*** init.inc.php 2 Nov 2006 08:06:03 -0000 1.103
--- init.inc.php 12 Nov 2006 08:06:30 -0000 1.104
***************
*** 14,18 ****
// Pull in the configuration and some functions.
if (!defined('BASE')) define('BASE', './');
- include_once(BASE.'default_config.inc.php');
include_once(BASE.'config.inc.php');
--- 14,17 ----
|