fix for bug [ 1429598 ] Double timezone conversation in eventWidget

This commit is contained in:
Ralf Becker 2006-03-03 08:50:17 +00:00
parent 20aa316f59
commit 131e6dad35

View File

@ -924,11 +924,11 @@ class uiviews extends uical
'location' => !$is_private ? $this->add_nonempty($event['location'],lang('Location')) : '',
'participants' => $participants,
'times' => !$event['multiday'] ? $this->add_nonempty($timespan,lang('Time')) :
$this->add_nonempty($GLOBALS['egw']->common->show_date($event['start']),lang('Start')).
$this->add_nonempty($GLOBALS['egw']->common->show_date($event['end']),lang('End')),
$this->add_nonempty($this->bo->format_date($event['start']),lang('Start')).
$this->add_nonempty($this->bo->format_date($event['end']),lang('End')),
'multidaytimes' => !$event['multiday'] ? '' :
$this->add_nonempty($GLOBALS['egw']->common->show_date($event['start']),lang('Start')).
$this->add_nonempty($GLOBALS['egw']->common->show_date($event['end']),lang('End')),
$this->add_nonempty($this->bo->format_date($event['start']),lang('Start')).
$this->add_nonempty($this->bo->format_date($event['end']),lang('End')),
'category' => !$is_private ? $this->add_nonempty($cats,lang('Category')) : '',
// the tooltip is based on the content of the actual widget, this way it takes no extra bandwidth/volum
// 'tooltip' => $this->html->tooltip(False,False,array('BorderWidth'=>0,'Padding'=>0)),