From 3d411f82daecde67e2fe8418d948bdb16baf14bc Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 3 Nov 2014 13:51:05 +0000 Subject: [PATCH] * ProjectManager/Timesheet: fixed an infinit loop when trying to save a project-element, caused by timesheet notifying project again --- timesheet/inc/class.timesheet_bo.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/timesheet/inc/class.timesheet_bo.inc.php b/timesheet/inc/class.timesheet_bo.inc.php index 85d1787de1..3e082627fb 100644 --- a/timesheet/inc/class.timesheet_bo.inc.php +++ b/timesheet/inc/class.timesheet_bo.inc.php @@ -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)); } }