From d0b9a13c54d75a6f6f3c0a93a4ab7024597a141a Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Tue, 4 May 2010 15:16:18 +0000 Subject: [PATCH] Start time is set seperately from start date --- timesheet/inc/class.timesheet_ui.inc.php | 1 + 1 file changed, 1 insertion(+) diff --git a/timesheet/inc/class.timesheet_ui.inc.php b/timesheet/inc/class.timesheet_ui.inc.php index 7a2548a280..fe38acce51 100644 --- a/timesheet/inc/class.timesheet_ui.inc.php +++ b/timesheet/inc/class.timesheet_ui.inc.php @@ -308,6 +308,7 @@ class timesheet_ui extends timesheet_bo list($link_id, $recurrence) = explode(':', $link_id); $event = $calendar_bo->read($link_id, $recurrence); $content['ts_start'] = $event['start']; + $content['start_time'] = egw_time::to($event['start'],'H:i'); $content['ts_title'] = $calendar_bo->link_title($event); $content['ts_description'] = $event['description']; $content['ts_duration'] = ($event['end'] - $event['start']) / 60;