Merge pull request #4002 from humhub/fix/4001

Fix #4001: LDAP user sync error
This commit is contained in:
Lucas Bartholemy 2020-04-16 18:52:42 +02:00 committed by GitHub
commit 323a621b74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View File

@ -24,7 +24,7 @@ if (!defined('PKCS7_DETACHED')) {
$config = [
'name' => 'HumHub',
'version' => '1.5.0',
'version' => '1.5.1',
'basePath' => dirname(__DIR__) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR,
'bootstrap' => ['log', 'humhub\components\bootstrap\ModuleAutoLoader', 'queue', 'humhub\modules\ui\view\bootstrap\ThemeLoader'],
'sourceLanguage' => 'en',

View File

@ -2,6 +2,12 @@ HumHub Change Log
=================
1.5.1 (April 16, 2020)
----------------------
- Fix #4001: LDAP user sync error
1.5.0 (April 15, 2020)
----------------------

View File

@ -27,5 +27,5 @@ class Module extends \humhub\components\Module
/**
* @var array|null the queried LDAP attributes, leave empty to retrieve all
*/
public $queriedAttributes = null;
public $queriedAttributes = [];
}