mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
Fix warning in PHP 8.0
This commit is contained in:
parent
a908cd9291
commit
7a09bf632a
1 changed files with 1 additions and 1 deletions
|
|
@ -1252,7 +1252,7 @@ class moduleModel extends module
|
|||
$output = executeQuery('module.getModulePartConfig', $args);
|
||||
|
||||
// Object or Array(compatibility) type
|
||||
if($output->data->config)
|
||||
if($output->data && isset($output->data->config))
|
||||
{
|
||||
$config = unserialize($output->data->config);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue