* 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:50:28 +00:00
parent d1e1683ba4
commit 0d62972c7f

View File

@ -972,7 +972,8 @@ class timesheet_bo extends so_sql_cf
if (isset($update)) if (isset($update))
{ {
$this->update($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)); //error_log(__METHOD__."() setting pm_id=$pm_id --> ".array2string($update));
} }
} }