new version 4.3.2

This commit is contained in:
Uwe Steinmann 2013-11-27 10:58:20 +01:00
parent 5d020c51f0
commit 99cb2503dc
4 changed files with 15 additions and 3 deletions

View File

@ -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
--------------------------------------------------------------------------------

View File

@ -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

View File

@ -20,7 +20,7 @@
class SeedDMS_Version {
var $_number = "4.3.1";
var $_number = "4.3.2";
var $_string = "SeedDMS";
function SeedDMS_Version() {

View File

@ -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');