Hi,
we use version egroupware-epl (11.1.20130816-1) with PHP Version 5.3.3-7
We have a little egw-app that reads data from a form and creates InfoLog entries.
The code that creates the entries is:
$bo = new infolog_bo();
$info = array(
'info_type' => $this->getTaskType(),
'info_subject' => $this->getSubject() ,
'info_startdate' => time(),
'info_id_parent' => $this->parentTaskID,
'info_responsible' => $this->getDelegates(),
'info_status' => $this->getStatus(),
'info_des' => $this->getDescription(),);
$this->taskID = $bo->write($info);
We never had any problems with this. In our test-environment with Community Version 1.8.004 and php 5.4 creates all InfoLogs without any problems.
But the live environment with the epl omitts a few of the infolog entries. We checked the db and there definitely are no entries. We are also not sure when the problem startet.
Have there been any changes to the creation of InfoLog entries? Any relevant api changes on this?
Would appreciate help on this.