Fix warnings and errors in SynchroReplica

SVN:trunk[5142]
This commit is contained in:
Pierre Goiffon
2017-11-29 14:30:10 +00:00
parent 6b9c038b31
commit d80b890cd0
3 changed files with 66 additions and 30 deletions

View File

@@ -74,8 +74,8 @@ abstract class DBObject implements iDisplay
private static $m_aBulkInsertCols = array(); // class => array of ('table' => array of <sql_column>)
private static $m_bBulkInsert = false;
private $m_bIsInDB = false; // true IIF the object is mapped to a DB record
private $m_iKey = null;
protected $m_bIsInDB = false; // true IIF the object is mapped to a DB record
protected $m_iKey = null;
private $m_aCurrValues = array();
protected $m_aOrigValues = array();