Link created timesheets back to event

This commit is contained in:
Nathan Gray 2010-04-22 21:41:35 +00:00
parent c4a8515d99
commit 7611cd1374

View File

@ -516,6 +516,12 @@ class calendar_uilist extends calendar_ui
$err = $timesheet_bo->save($timesheet);
if(!$err) {
$success++;
// Can't link to just one of a recurring series of events
if(!$recur_date) {
// Create link
egw_link::link('calendar', $id, 'timesheet', $timesheet_bo->data['ts_id']);
}
}
else
{