mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 14:18:27 +01:00
Fix: Exception 'yii\base\InvalidConfigException' with message 'Unsupported configuration type: object' (#7023)
* Fix: Exception 'yii\base\InvalidConfigException' with message 'Unsupported configuration type: object' * Fix: Exception 'yii\base\InvalidConfigException' with message 'Unsupported configuration type: object'
This commit is contained in:
parent
3c1357e347
commit
49bd25f022
@ -32,6 +32,7 @@ HumHub Changelog
|
||||
- Fix #7017: Fix content search order after restoring from cache
|
||||
- Fix #7021: Image cropping: prevent vertical images from being displayed higher than the browser window
|
||||
- Fix #7007: Allow resetting of people filters
|
||||
- Fix #7023: Fix `Unsupported configuration type: object` Exception when running `php yii` on fresh installation
|
||||
|
||||
1.16.0-beta.2 (April 9, 2024)
|
||||
-----------------------------
|
||||
|
@ -145,6 +145,10 @@ trait ApplicationTrait
|
||||
|
||||
private function removeLegacyConfigSettings($applicationConfig)
|
||||
{
|
||||
return ArrayHelper::merge($applicationConfig, SelfTest::getLegancyConfigSettings());
|
||||
return ArrayHelper::merge([
|
||||
'modules' => [],
|
||||
'components' => [],
|
||||
], $applicationConfig, SelfTest::getLegancyConfigSettings()
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user