define and initialize $_ttreceiptid

This commit is contained in:
Uwe Steinmann 2016-10-26 19:25:35 +02:00
parent d3c12a84fd
commit 04cb20a814

View File

@ -87,6 +87,11 @@ class SeedDMS_Core_DatabaseAccess {
*/ */
private $_ttcontentid; private $_ttcontentid;
/**
* @var boolean set to true if temp. table for doc content has been created
*/
private $_ttreceiptid;
/** /**
* @var boolean set to true if in a database transaction * @var boolean set to true if in a database transaction
*/ */
@ -151,6 +156,7 @@ class SeedDMS_Core_DatabaseAccess {
$this->_ttapproveid = false; $this->_ttapproveid = false;
$this->_ttstatid = false; $this->_ttstatid = false;
$this->_ttcontentid = false; $this->_ttcontentid = false;
$this->_ttreceiptid = false;
$this->_debug = false; $this->_debug = false;
} /* }}} */ } /* }}} */