git-svn-id: http://xe-core.googlecode.com/svn/trunk@1605 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-06-12 04:55:28 +00:00
parent c8185fadaa
commit 3b0fef43bd
3 changed files with 2 additions and 4 deletions

View file

@ -25,7 +25,7 @@
// 에디터 모듈의 getEditor를 호출하여 세팅
$oEditorModel = &getModel('editor');
$option->allow_fileupload = $this->grant->comment_fileupload;
$option->allow_fileupload = false;
$option->enable_autosave = false;
$option->enable_default_component = true;
$option->enable_component = true;

View file

@ -147,7 +147,6 @@
// 블로그의 코멘트는 ajax로 호출되기에 미리 css, js파일을 import
Context::addJsFile('./modules/editor/tpl/js/editor.js');
Context::addJsFile('./modules/editor/tpl/js/uploader.js');
Context::addCSSFile('./modules/editor/tpl/css/editor.css');
$this->setTemplateFile('list');
@ -360,7 +359,7 @@
Context::set('comment_srl', $comment_srl);
}
$oEditorModel = &getModel('editor');
$option->allow_fileupload = $this->grant->comment_fileupload;
$option->allow_fileupload = false;
$option->enable_autosave = false;
$option->enable_default_component = true;
$option->enable_component = true;

View file

@ -68,7 +68,6 @@ function completeCommentEditorForm(ret_obj) {
// 에디터 실행
editorStart(upload_target_srl, true, 100);
editor_upload_form_set(upload_target_srl);
}
/**