개별 플래닛에서 action forward 가 호출될때 레이아웃이 사라지는 현상 제거 (플래닛 모듈 업데이트 필요)

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6296 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-05-07 04:49:48 +00:00
parent d93c380843
commit 56dbc7a996
3 changed files with 25 additions and 4 deletions

View file

@ -155,17 +155,17 @@
// mid값이 있을 경우 mid값을 세팅
if($this->mid) Context::set('mid', $this->mid, true);
// 현재 모듈의 정보를 세팅
Context::set('current_module_info', $module_info);
// 실제 동작을 하기 전에 trigger 호출
$output = ModuleHandler::triggerCall('display', 'before', $content);
$output = ModuleHandler::triggerCall('moduleHandler.init', 'after', $this->module_info);
if(!$output->toBool()) {
$this->error = $output->getMessage();
return false;
}
// 현재 모듈의 정보를 세팅
Context::set('current_module_info', $this->module_info);
return true;
}