diff --git a/Makefile b/Makefile index 15b632e01..8893fe0d7 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=4.3.22 +VERSION=4.3.23 SRC=CHANGELOG inc conf utils index.php languages views op out README.md README.Notification README.Ubuntu drop-tables-innodb.sql styles js TODO LICENSE Makefile webdav install restapi # webapp diff --git a/SeedDMS_Core/Core/inc.ClassDMS.php b/SeedDMS_Core/Core/inc.ClassDMS.php index 90d09888f..c0964b753 100644 --- a/SeedDMS_Core/Core/inc.ClassDMS.php +++ b/SeedDMS_Core/Core/inc.ClassDMS.php @@ -273,7 +273,7 @@ class SeedDMS_Core_DMS { $this->convertFileTypes = array(); $this->version = '@package_version@'; if($this->version[0] == '@') - $this->version = '4.3.21'; + $this->version = '4.3.23'; } /* }}} */ /** diff --git a/SeedDMS_Core/package.xml b/SeedDMS_Core/package.xml index 42792819f..9f7a467a2 100644 --- a/SeedDMS_Core/package.xml +++ b/SeedDMS_Core/package.xml @@ -12,11 +12,11 @@ uwe@steinmann.cx yes - 2015-11-09 - + 2016-01-21 + - 4.3.22 - 4.3.22 + 4.3.23 + 4.3.23 stable @@ -24,8 +24,8 @@ GPL License -- fix sql statement to reset password -- pass some more information for timeline +- new method SeedDMS_Core_DMS::createDump() +- minor improvements int SeedDMS_Core_Document::getReadAccessList() @@ -909,5 +909,22 @@ by a group or user right - user getCurrentTimestamp() and getCurrentDatetime() whenever possible + + 2015-11-09 + + + 4.3.22 + 4.3.22 + + + stable + stable + + GPL License + +- fix sql statement to reset password +- pass some more information for timeline + + diff --git a/inc/inc.Version.php b/inc/inc.Version.php index b187bcce0..88401cc22 100644 --- a/inc/inc.Version.php +++ b/inc/inc.Version.php @@ -20,7 +20,7 @@ class SeedDMS_Version { - public $_number = "4.3.22"; + public $_number = "4.3.23"; private $_string = "SeedDMS"; function SeedDMS_Version() { diff --git a/install/install.php b/install/install.php index 23d24e9c0..e9762cd03 100644 --- a/install/install.php +++ b/install/install.php @@ -119,7 +119,7 @@ function fileExistsInIncludePath($file) { /* {{{ */ * Load default settings + set */ define("SEEDDMS_INSTALL", "on"); -define("SEEDDMS_VERSION", "4.3.22"); +define("SEEDDMS_VERSION", "4.3.23"); require_once('../inc/inc.ClassSettings.php');