removed tz-converstation:

- to fix tz-probs in infolog
- in my belive tz-conversation should always be done in the bo-layer and not in ui (eTemplate)
This commit is contained in:
Ralf Becker 2004-08-28 17:56:27 +00:00
parent 9e1dcb9a78
commit 2f7c4cb8fc

View File

@ -79,7 +79,6 @@
}
else
{
$value += $GLOBALS['phpgw']->datetime->tz_offset;
$value = array(
'Y' => date('Y',$value),
'm' => date('m',$value),
@ -288,8 +287,7 @@
}
if (empty($extension_data))
{
$value = mktime(intval($value['H']),intval($value['i']),0,$value['m'],$value['d'],$value['Y'])
- $GLOBALS['phpgw']->datetime->tz_offset;
$value = mktime(intval($value['H']),intval($value['i']),0,$value['m'],$value['d'],$value['Y']);
}
else
{