From 30278672bcbedac7f7d63f63380ec03b74942e02 Mon Sep 17 00:00:00 2001 From: zero Date: Fri, 30 Mar 2007 13:52:13 +0000 Subject: [PATCH] git-svn-id: http://xe-core.googlecode.com/svn/trunk@841 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/editor/editor.model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/editor/editor.model.php b/modules/editor/editor.model.php index 8c2e8c474..88455a049 100644 --- a/modules/editor/editor.model.php +++ b/modules/editor/editor.model.php @@ -80,7 +80,7 @@ **/ function getComponentObject($component, $upload_target_srl = 0) { // 해당 컴포넌트의 객체를 생성해서 실행 - $class_path = sprintf('%scomponents/%s/', $this->module_path, $component); + $class_path = sprintf('./editor_components/%s/', $component); $class_file = sprintf('%s%s.class.php', $class_path, $component); if(!file_exists($class_file)) return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component));