From 99cb2503dc6ae973c08774b7d8ce6306a8db724b Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 27 Nov 2013 10:58:20 +0100 Subject: [PATCH] new version 4.3.2 --- CHANGELOG | 12 ++++++++++++ Makefile | 2 +- inc/inc.Version.php | 2 +- install/install.php | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index c93a97ff4..ef82a0479 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,15 @@ +-------------------------------------------------------------------------------- + Changes in version 4.3.2 +-------------------------------------------------------------------------------- +- fix approval of documents by group if owner of document is member of group +- make jumploader work with java 1.7 +- turning of the language selector will no longer turn off user substitution +- use PATH_SEPARATOR and DIRECTORY_SEPARATOR when checking the include path + for files +- check if target folder is a child of the current folder when moving folders +- fix missing documents in tree of document choser (Bug #105) +- add another folder/document check + -------------------------------------------------------------------------------- Changes in version 4.3.1 -------------------------------------------------------------------------------- diff --git a/Makefile b/Makefile index 363162c3a..d2dde2668 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=4.3.1 +VERSION=4.3.2 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/inc/inc.Version.php b/inc/inc.Version.php index f9a3602a0..8731b2045 100644 --- a/inc/inc.Version.php +++ b/inc/inc.Version.php @@ -20,7 +20,7 @@ class SeedDMS_Version { - var $_number = "4.3.1"; + var $_number = "4.3.2"; var $_string = "SeedDMS"; function SeedDMS_Version() { diff --git a/install/install.php b/install/install.php index 52b9df505..7ef26738d 100644 --- a/install/install.php +++ b/install/install.php @@ -116,7 +116,7 @@ function fileExistsInIncludePath($file) { /* {{{ */ * Load default settings + set */ define("SEEDDMS_INSTALL", "on"); -define("SEEDDMS_VERSION", "4.3.1"); +define("SEEDDMS_VERSION", "4.3.2"); require_once('../inc/inc.ClassSettings.php');