mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
Fix error in PHP 8.0
This commit is contained in:
parent
76d991abfd
commit
78a88ce4e3
1 changed files with 1 additions and 1 deletions
|
|
@ -203,7 +203,7 @@ class moduleController extends module
|
|||
|
||||
function updateModulePartConfig($module, $module_srl, $config)
|
||||
{
|
||||
$origin_config = ModuleModel::getModulePartConfig($module, $module_srl);
|
||||
$origin_config = ModuleModel::getModulePartConfig($module, $module_srl) ?: new stdClass;
|
||||
|
||||
foreach($config as $key => $val)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue