* ProjectManager/Timesheet: fixed an infinit loop when trying to save a project-element, caused by timesheet notifying project again

This commit is contained in:
Ralf Becker 2014-11-03 13:51:05 +00:00
parent f0344d83e0
commit 3d411f82da

View File

@ -972,7 +972,8 @@ class timesheet_bo extends so_sql_cf
if (isset($update))
{
$this->update($update);
egw_link::notify_update(TIMESHEET_APP, $this->data['ts_id'],$this->data);
// do NOT notify about title-change, as this will lead to an infinit loop!
// egw_link::notify_update(TIMESHEET_APP, $this->data['ts_id'],$this->data);
//error_log(__METHOD__."() setting pm_id=$pm_id --> ".array2string($update));
}
}