위젯 핸들링 하는 부분을 수정하여 페이지 수정시 위젯을 추가하게 되면 해당 페이지를 다시 읽어 플래시파일등의 추가 및 css의 오류가 없도록 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3603 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-01-28 06:11:00 +00:00
parent de2a43eb43
commit 95cfcf7f83
10 changed files with 209 additions and 215 deletions

View file

@ -153,7 +153,9 @@
Context::set('module_info', $this->module_info);
// 내용을 세팅
$content = $this->module_info->content;
$content = Context::get('content');
if(!$content) $content = $this->module_info->content;
Context::set('content', $content);
// 내용중 위젯들을 변환
$oWidgetController = &getController('widget');