- Bug fix ? DBInsertTracked should return the same value as DBInsert

SVN:code[40]
This commit is contained in:
Denis Flaven
2009-04-14 17:02:37 +00:00
parent 5df462514a
commit 3358f4b127

View File

@@ -194,8 +194,9 @@ abstract class CMDBObject extends DBObject
public function DBInsertTracked(CMDBChange $oChange)
{
self::$m_oCurrChange = $oChange;
$this->DBInsertTracked_Internal();
$ret = $this->DBInsertTracked_Internal();
self::$m_oCurrChange = null;
return $ret;
}
protected function DBInsertTracked_Internal()