mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 23:24:57 +00:00
cast date to int in constructor of SeedDMS_Core_DocumentContent
This commit is contained in:
parent
a0d214eac2
commit
bca394176e
|
@ -3035,7 +3035,7 @@ class SeedDMS_Core_DocumentContent extends SeedDMS_Core_Object { /* {{{ */
|
||||||
$this->_document = $document;
|
$this->_document = $document;
|
||||||
$this->_version = (int) $version;
|
$this->_version = (int) $version;
|
||||||
$this->_comment = $comment;
|
$this->_comment = $comment;
|
||||||
$this->_date = $date;
|
$this->_date = (int) $date;
|
||||||
$this->_userID = (int) $userID;
|
$this->_userID = (int) $userID;
|
||||||
$this->_dir = $dir;
|
$this->_dir = $dir;
|
||||||
$this->_orgFileName = $orgFileName;
|
$this->_orgFileName = $orgFileName;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user