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

This commit is contained in:
zero 2007-03-19 10:25:41 +00:00
parent e277f86f12
commit a4f427a228
3 changed files with 50 additions and 1 deletions

View file

@ -27,6 +27,10 @@
// 요청방식에 따라 출력을 별도로
if(Context::getResponseMethod()!="XMLRPC") {
// 각 플러그인, 에디터 컴포넌트의 코드 변경
$oContext = &Context::getInstance();
$content = $oContext->transContent($content);
Context::set('content', $content);
// content 래핑 (common/tpl/default.html)
@ -34,6 +38,7 @@
$oTemplate = new TemplateHandler();
$output = $oTemplate->compile($oModule->getLayoutPath(), $oModule->getLayoutFile());
} else {
$output = $content;
}