요청된 모듈과 action forward간의 결과값이 전달되지 않아서 파일첨부가 되지 않는 문제를 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5822 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-03-10 03:02:17 +00:00
parent 661839f40e
commit 834bbb131a

View file

@ -300,12 +300,15 @@
$this->setTemplatePath($oModule->getTemplatePath()); $this->setTemplatePath($oModule->getTemplatePath());
$this->setTemplateFile($oModule->getTemplateFile()); $this->setTemplateFile($oModule->getTemplateFile());
$this->adds($oModule->getVariables());
// forward 모듈을 찾지 못했다면 원 모듈의 default index action을 실행 // forward 모듈을 찾지 못했다면 원 모듈의 default index action을 실행
} else if($this->xml_info->default_index_act && method_exists($this, $this->xml_info->default_index_act)) { } else if($this->xml_info->default_index_act && method_exists($this, $this->xml_info->default_index_act)) {
$output = $this->{$this->xml_info->default_index_act}(); $output = $this->{$this->xml_info->default_index_act}();
} else { } else {
return false; return false;
} }
} else { } else {
return false; return false;
} }