Browse Source

#976 The fix [3306] introduced a regression: Call to undefined function DBInsert()

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@3315 a333f486-631f-4898-b8df-5754b55c2be0
romainq 11 years ago
parent
commit
2667c74c3e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/cmdbobject.class.inc.php

+ 1 - 1
core/cmdbobject.class.inc.php

@@ -459,7 +459,7 @@ abstract class CMDBObject extends DBObject
 		}
 		else
 		{
-			$ret = $this>DBInsert();
+			$ret = $this->DBInsert();
 		}
 		return $ret;
 	}