mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Fix warnings in PHP 8.0 related to editor components
This commit is contained in:
parent
c5ceafc841
commit
c6f728cec6
4 changed files with 14 additions and 14 deletions
|
|
@ -518,7 +518,7 @@ class editorModel extends editor
|
|||
return new BaseObject(-1, 'msg_component_is_not_founded', $component);
|
||||
}
|
||||
|
||||
if(!self::$_loaded_component_list[$component][$editor_sequence])
|
||||
if(!isset(self::$_loaded_component_list[$component][$editor_sequence]))
|
||||
{
|
||||
// Create an object of the component and execute
|
||||
$class_path = sprintf('./modules/editor/components/%s/', $component);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue