Add missing result fields to procFileIframeUpload

모바일 스킨에서 파일 업로드 자체구현할 때 종종 사용하는 액션인데
mp4 썸네일 주소 등 라이믹스에서 추가한 필드들이 반환되지 않아
스킨에서 연동하기 어려운 문제를 보완합니다.
This commit is contained in:
Kijin Sung 2021-04-27 21:32:34 +09:00
parent 4f41362efe
commit 4460de58fd
2 changed files with 8 additions and 0 deletions

View file

@ -198,6 +198,7 @@ class fileController extends file
if(is_uploaded_file($file_info['tmp_name'])) {
$output = $this->insertFile($file_info, $module_srl, $upload_target_srl);
Context::set('uploaded_fileinfo',$output);
Context::set('module_srl', $module_srl);
}
Context::set('layout','none');