mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-04 17:44:38 +09:00
Fix warning in PHP 8.0
This commit is contained in:
parent
9b714acb55
commit
9c77f9593d
1 changed files with 1 additions and 1 deletions
|
|
@ -1385,7 +1385,7 @@ class documentItem extends BaseObject
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!$this->uploadedFiles[$sortIndex])
|
if(!isset($this->uploadedFiles[$sortIndex]))
|
||||||
{
|
{
|
||||||
$this->uploadedFiles[$sortIndex] = FileModel::getFiles($this->document_srl, array(), $sortIndex, true);
|
$this->uploadedFiles[$sortIndex] = FileModel::getFiles($this->document_srl, array(), $sortIndex, true);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue