Merge branch 'seeddms-4.3.3' into develop

Conflicts:
	Makefile
This commit is contained in:
Uwe Steinmann 2014-02-01 16:46:34 +01:00
commit 6aa821490d
5 changed files with 8 additions and 6 deletions

View File

@ -1,4 +1,4 @@
VERSION=4.3.2
VERSION=4.3.3
SRC=CHANGELOG inc conf utils index.php languages views op out controllers README.md README.Notification README.Ubuntu drop-tables-innodb.sql styles js TODO LICENSE Makefile webdav install
#restapi webapp

View File

@ -243,7 +243,7 @@ class SeedDMS_Core_DMS {
$this->convertFileTypes = array();
$this->version = '@package_version@';
if($this->version[0] == '@')
$this->version = '4.3.2';
$this->version = '4.3.3';
} /* }}} */
function getDB() { /* {{{ */

View File

@ -12,8 +12,8 @@
<email>uwe@steinmann.cx</email>
<active>yes</active>
</lead>
<date>2014-01-13</date>
<time>14:29:34</time>
<date>2014-02-01</date>
<time>16:19:34</time>
<version>
<release>4.3.3</release>
<api>4.3.3</api>
@ -24,6 +24,8 @@
</stability>
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
<notes>
- SeedDMS_Folder::getDocuments() and SeedDMS_Folder::getSubFolders() do not
do any sorting if $orderby is not set.
- database hostname can have port seperated by ':'
- make all functions in SeedDMS_Core_File static (fixes problem with php 5.5.x)
</notes>

View File

@ -20,7 +20,7 @@
class SeedDMS_Version {
var $_number = "4.3.2";
var $_number = "4.3.3";
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.2");
define("SEEDDMS_VERSION", "4.3.3");
require_once('../inc/inc.ClassSettings.php');