mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-14 21:51:32 +00:00
start new version 4.3.35
This commit is contained in:
parent
fd6055d577
commit
6bb6662de4
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
||||||
VERSION=4.3.34
|
VERSION=4.3.35
|
||||||
SRC=CHANGELOG inc conf utils index.php languages views op out doc styles LICENSE webdav install restapi pdfviewer
|
SRC=CHANGELOG inc conf utils index.php languages views op out doc styles LICENSE webdav install restapi pdfviewer
|
||||||
# webapp
|
# webapp
|
||||||
|
|
||||||
|
|
|
@ -307,7 +307,7 @@ class SeedDMS_Core_DMS {
|
||||||
$this->callbacks = array();
|
$this->callbacks = array();
|
||||||
$this->version = '@package_version@';
|
$this->version = '@package_version@';
|
||||||
if($this->version[0] == '@')
|
if($this->version[0] == '@')
|
||||||
$this->version = '4.3.34';
|
$this->version = '4.3.35';
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -38,7 +38,7 @@ class SeedDMS_Core_DatabaseAccess {
|
||||||
protected $_hostname;
|
protected $_hostname;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var int port number of database
|
* @var int port number of database
|
||||||
*/
|
*/
|
||||||
protected $_port;
|
protected $_port;
|
||||||
|
|
||||||
|
@ -91,7 +91,7 @@ class SeedDMS_Core_DatabaseAccess {
|
||||||
* @var boolean set to true if in a database transaction
|
* @var boolean set to true if in a database transaction
|
||||||
*/
|
*/
|
||||||
private $_intransaction;
|
private $_intransaction;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return list of all database tables
|
* Return list of all database tables
|
||||||
*
|
*
|
||||||
|
@ -233,7 +233,7 @@ class SeedDMS_Core_DatabaseAccess {
|
||||||
*/
|
*/
|
||||||
function getResultArray($queryStr) { /* {{{ */
|
function getResultArray($queryStr) { /* {{{ */
|
||||||
$resArr = array();
|
$resArr = array();
|
||||||
|
|
||||||
$res = $this->_conn->query($queryStr);
|
$res = $this->_conn->query($queryStr);
|
||||||
if ($res === false) {
|
if ($res === false) {
|
||||||
if($this->_debug)
|
if($this->_debug)
|
||||||
|
@ -263,7 +263,7 @@ class SeedDMS_Core_DatabaseAccess {
|
||||||
return false;
|
return false;
|
||||||
} else
|
} else
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
return $res;
|
return $res;
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
|
|
|
@ -12,11 +12,11 @@
|
||||||
<email>uwe@steinmann.cx</email>
|
<email>uwe@steinmann.cx</email>
|
||||||
<active>yes</active>
|
<active>yes</active>
|
||||||
</lead>
|
</lead>
|
||||||
<date>2017-02-28</date>
|
<date>2017-03-22</date>
|
||||||
<time>06:38:12</time>
|
<time>06:38:12</time>
|
||||||
<version>
|
<version>
|
||||||
<release>4.3.34</release>
|
<release>4.3.35</release>
|
||||||
<api>4.3.34</api>
|
<api>4.3.35</api>
|
||||||
</version>
|
</version>
|
||||||
<stability>
|
<stability>
|
||||||
<release>stable</release>
|
<release>stable</release>
|
||||||
|
@ -24,7 +24,6 @@
|
||||||
</stability>
|
</stability>
|
||||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||||
<notes>
|
<notes>
|
||||||
SeedDMS_Core_DMS::getDuplicateDocumentContent() returns complete document
|
|
||||||
</notes>
|
</notes>
|
||||||
<contents>
|
<contents>
|
||||||
<dir baseinstalldir="SeedDMS" name="/">
|
<dir baseinstalldir="SeedDMS" name="/">
|
||||||
|
@ -1125,5 +1124,21 @@ SeedDMS_Core_DMS::getNotificationsByUser() are deprecated
|
||||||
- SeedDMЅ_Core_User::setFullname() minor fix in sql statement
|
- SeedDMЅ_Core_User::setFullname() minor fix in sql statement
|
||||||
</notes>
|
</notes>
|
||||||
</release>
|
</release>
|
||||||
|
<release>
|
||||||
|
<date>2017-02-28</date>
|
||||||
|
<time>06:38:12</time>
|
||||||
|
<version>
|
||||||
|
<release>4.3.34</release>
|
||||||
|
<api>4.3.34</api>
|
||||||
|
</version>
|
||||||
|
<stability>
|
||||||
|
<release>stable</release>
|
||||||
|
<api>stable</api>
|
||||||
|
</stability>
|
||||||
|
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||||
|
<notes>
|
||||||
|
SeedDMS_Core_DMS::getDuplicateDocumentContent() returns complete document
|
||||||
|
</notes>
|
||||||
|
</release>
|
||||||
</changelog>
|
</changelog>
|
||||||
</package>
|
</package>
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
class SeedDMS_Version {
|
class SeedDMS_Version {
|
||||||
|
|
||||||
public $_number = "4.3.34";
|
public $_number = "4.3.35";
|
||||||
private $_string = "SeedDMS";
|
private $_string = "SeedDMS";
|
||||||
|
|
||||||
function __construct() {
|
function __construct() {
|
||||||
|
|
|
@ -118,7 +118,7 @@ function fileExistsInIncludePath($file) { /* {{{ */
|
||||||
* Load default settings + set
|
* Load default settings + set
|
||||||
*/
|
*/
|
||||||
define("SEEDDMS_INSTALL", "on");
|
define("SEEDDMS_INSTALL", "on");
|
||||||
define("SEEDDMS_VERSION", "4.3.34");
|
define("SEEDDMS_VERSION", "4.3.35");
|
||||||
|
|
||||||
require_once('../inc/inc.ClassSettings.php');
|
require_once('../inc/inc.ClassSettings.php');
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user