mirror of
https://github.com/humhub/humhub.git
synced 2025-01-16 21:58:17 +01:00
Fix not initialized groups array on the module administration (#6560)
Co-authored-by: Lucas Bartholemy <luke-@users.noreply.github.com>
This commit is contained in:
parent
8410312fc1
commit
a6c7abd3a7
@ -11,6 +11,7 @@ HumHub Changelog
|
||||
- Fix #6539: Fix overriding of loaded value with default value on HForm
|
||||
- Fix #6464: Fix access to own user container
|
||||
- Fix #6349: Fix error on login new user from external service when maintenance is enabled
|
||||
- Fix #6557: Fix not initialized groups array on the module administration
|
||||
- Fix #6556: Fix command `theme/switch`
|
||||
|
||||
1.14.3 (July 27, 2023)
|
||||
|
@ -20,10 +20,7 @@ use yii\helpers\ArrayHelper;
|
||||
*/
|
||||
class Modules extends Widget
|
||||
{
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
public $groups;
|
||||
public array $groups = [];
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
|
Loading…
x
Reference in New Issue
Block a user