mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1013 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
61f574fe90
commit
6f6f7b2ba0
1 changed files with 10 additions and 7 deletions
|
|
@ -267,14 +267,17 @@
|
||||||
if($forward->module && $forward->type && $forward->act) {
|
if($forward->module && $forward->type && $forward->act) {
|
||||||
|
|
||||||
$oModule = &getModule($forward->module, $forward->type);
|
$oModule = &getModule($forward->module, $forward->type);
|
||||||
$xml_info = $oModuleModel->getModuleActionXml($forward->module);
|
if(method_exists($forward->act, $oModule)) {
|
||||||
$oModule->setAct($forward->act);
|
$xml_info = $oModuleModel->getModuleActionXml($forward->module);
|
||||||
$oModule->init();
|
$oModule->setAct($forward->act);
|
||||||
$oModule->setModuleInfo($this->module_info, $xml_info);
|
$oModule->init();
|
||||||
$output = call_user_method($forward->act, $oModule);
|
$oModule->setModuleInfo($this->module_info, $xml_info);
|
||||||
|
|
||||||
$this->setTemplatePath($oModule->getTemplatePath());
|
$output = call_user_method($forward->act, $oModule);
|
||||||
$this->setTemplateFile($oModule->getTemplateFile());
|
|
||||||
|
$this->setTemplatePath($oModule->getTemplatePath());
|
||||||
|
$this->setTemplateFile($oModule->getTemplateFile());
|
||||||
|
} else $this->stop('msg_module_is_not_exists');
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
if($this->xml_info->default_index_act) {
|
if($this->xml_info->default_index_act) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue