PHP 8.0에서 변경된 implode() 매개변수 순서 수정
This commit is contained in:
@ -1057,7 +1057,7 @@ class UploadHandler
|
||||
}
|
||||
if (count($failed_versions)) {
|
||||
$file->error = $this->get_error_message('image_resize')
|
||||
.' ('.implode($failed_versions,', ').')';
|
||||
.' ('.implode(', ', $failed_versions).')';
|
||||
}
|
||||
// Free memory:
|
||||
$this->destroy_image_object($file_path);
|
||||
|
||||
Reference in New Issue
Block a user