mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
* Timesheet - Fix links to application custom fields are not created on first save
This commit is contained in:
parent
584613f0bf
commit
a2a33f0ae9
@ -647,18 +647,18 @@ class timesheet_bo extends Api\Storage
|
|||||||
Link::restore(TIMESHEET_APP, $new['ts_id']);
|
Link::restore(TIMESHEET_APP, $new['ts_id']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!is_object($this->tracking))
|
|
||||||
{
|
|
||||||
$this->tracking = new timesheet_tracking($this);
|
|
||||||
|
|
||||||
$this->tracking->html_content_allow = true;
|
|
||||||
}
|
|
||||||
if ($this->tracking->track($this->data,$old,$this->user) === false)
|
|
||||||
{
|
|
||||||
return implode(', ',$this->tracking->errors);
|
|
||||||
}
|
|
||||||
if (!($err = parent::save()))
|
if (!($err = parent::save()))
|
||||||
{
|
{
|
||||||
|
if (!is_object($this->tracking))
|
||||||
|
{
|
||||||
|
$this->tracking = new timesheet_tracking($this);
|
||||||
|
|
||||||
|
$this->tracking->html_content_allow = true;
|
||||||
|
}
|
||||||
|
if ($this->tracking->track($this->data,$old,$this->user) === false)
|
||||||
|
{
|
||||||
|
return implode(', ',$this->tracking->errors);
|
||||||
|
}
|
||||||
// notify the link-class about the update, as other apps may be subscribt to it
|
// notify the link-class about the update, as other apps may be subscribt to it
|
||||||
Link::notify_update(TIMESHEET_APP,$this->data['ts_id'],$this->data);
|
Link::notify_update(TIMESHEET_APP,$this->data['ts_id'],$this->data);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user