mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
Fix PHP Exception
PHP Exception: TypeError #0 "explode(): Argument #2 ($string) must be of type string, stdClass given" in modules/file/file.controller.php on line 1273
This commit is contained in:
parent
807461f0ac
commit
994d7ca83e
1 changed files with 2 additions and 2 deletions
|
|
@ -947,7 +947,7 @@ class fileController extends file
|
|||
if(!$output->toBool())
|
||||
{
|
||||
$oDB->rollback();
|
||||
$this->deleteFile($args);
|
||||
$this->deleteFile(array($args));
|
||||
return $output;
|
||||
}
|
||||
|
||||
|
|
@ -964,7 +964,7 @@ class fileController extends file
|
|||
if(!$output->toBool())
|
||||
{
|
||||
$oDB->rollback();
|
||||
$this->deleteFile($args);
|
||||
$this->deleteFile(array($args));
|
||||
return $output;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue