SWFUploader 버전 업그레이드. Flash10에 따른 파일업로드 동작 오류 수정. 내부적으로 파일업로드와 글/댓글/페이지의 관계 구조 개선

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4680 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-10-24 09:39:36 +00:00
parent 0973e8ab4e
commit 7df9c7eb8e
17 changed files with 1229 additions and 277 deletions

View file

@ -23,6 +23,12 @@
$args->document_srl = Context::get('document_srl');
$args->content = Context::get('content');
$args->title = Context::get('title');
$output = $this->doSaveDoc($args);
$this->setMessage('msg_auto_saved');
}
function doSaveDoc($args) {
if(Context::get('is_logged')) {
$logged_info = Context::get('logged_info');
@ -32,8 +38,7 @@
}
// 저장
$output = executeQuery('editor.insertSavedDoc', $args);
$this->setMessage('msg_auto_saved');
return executeQuery('editor.insertSavedDoc', $args);
}
/**