파일 업로드후에 결과를 return하도록 수정

git-svn-id: http://xe-core.googlecode.com/svn/trunk@2031 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-07-26 10:41:16 +00:00
parent 3eec8e758c
commit d3c3350fe9

View file

@ -29,7 +29,7 @@
// 정상적으로 업로드된 파일이 아니면 오류 출력
if(!is_uploaded_file($file_info['tmp_name'])) return false;
$output = $this->insertFile($file_info, $module_srl, $upload_target_srl);
return $this->insertFile($file_info, $module_srl, $upload_target_srl);
}