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

This commit is contained in:
zero 2007-04-06 08:47:12 +00:00
parent 61f574fe90
commit 6f6f7b2ba0

View file

@ -267,14 +267,17 @@
if($forward->module && $forward->type && $forward->act) {
$oModule = &getModule($forward->module, $forward->type);
if(method_exists($forward->act, $oModule)) {
$xml_info = $oModuleModel->getModuleActionXml($forward->module);
$oModule->setAct($forward->act);
$oModule->init();
$oModule->setModuleInfo($this->module_info, $xml_info);
$output = call_user_method($forward->act, $oModule);
$this->setTemplatePath($oModule->getTemplatePath());
$this->setTemplateFile($oModule->getTemplateFile());
} else $this->stop('msg_module_is_not_exists');
} else {
if($this->xml_info->default_index_act) {