옛날 스킨용 자동 저장문서의 첨부파일 불러오기 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6561 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
misol 2009-06-16 10:09:25 +00:00
parent 8e5eb37e53
commit c41cad4c1a
3 changed files with 38 additions and 2 deletions

View file

@ -254,6 +254,27 @@
}
/**
* @brief 자동 저장글 Srl 로드 - XE 이전 버전 사용자를 위함.
**/
function procEditorLoadSavedDocument() {
$editor_sequence = Context::get('editor_sequence');
$primary_key = Context::get('primary_key');
$oEditorModel = &getModel('editor');
$oFileController = &getController('file');
$saved_doc = $oEditorModel->getSavedDoc(null);
$oFileController->setUploadInfo($editor_sequence, $saved_doc->document_srl);
$vars = $this->getVariables();
$this->add("editor_sequence", $editor_sequence);
$this->add("key", $primary_key);
$this->add("title", $saved_doc->title);
$this->add("content", $saved_doc->content);
$this->add("document_srl", $saved_doc->document_srl);
}
/**
* @brief 게시글의 입력/수정이 일어났을 경우 자동 저장문서를 제거하는 trigger
**/