diff --git a/Makefile b/Makefile index 30e3bec8c..74b9eba92 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=4.3.26 +VERSION=4.3.27 SRC=CHANGELOG inc conf utils index.php languages views op out doc 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 45e93971f..2999fa977 100644 --- a/SeedDMS_Core/Core/inc.ClassDMS.php +++ b/SeedDMS_Core/Core/inc.ClassDMS.php @@ -274,7 +274,7 @@ class SeedDMS_Core_DMS { $this->callbacks = array(); $this->version = '@package_version@'; if($this->version[0] == '@') - $this->version = '4.3.26'; + $this->version = '4.3.27'; } /* }}} */ /** diff --git a/inc/inc.Version.php b/inc/inc.Version.php index 9497d5134..e48181fe5 100644 --- a/inc/inc.Version.php +++ b/inc/inc.Version.php @@ -20,7 +20,7 @@ class SeedDMS_Version { - public $_number = "4.3.26"; + public $_number = "4.3.27"; private $_string = "SeedDMS"; function __construct() { diff --git a/install/install.php b/install/install.php index f3b1536c8..2d1e2d51d 100644 --- a/install/install.php +++ b/install/install.php @@ -118,7 +118,7 @@ function fileExistsInIncludePath($file) { /* {{{ */ * Load default settings + set */ define("SEEDDMS_INSTALL", "on"); -define("SEEDDMS_VERSION", "4.3.26"); +define("SEEDDMS_VERSION", "4.3.27"); require_once('../inc/inc.ClassSettings.php');