From 834bbb131acde7ab73cd0c6d91bf00579f70e31c Mon Sep 17 00:00:00 2001 From: zero Date: Tue, 10 Mar 2009 03:02:17 +0000 Subject: [PATCH] =?UTF-8?q?=EC=9A=94=EC=B2=AD=EB=90=9C=20=EB=AA=A8?= =?UTF-8?q?=EB=93=88=EA=B3=BC=20action=20forward=EA=B0=84=EC=9D=98=20?= =?UTF-8?q?=EA=B2=B0=EA=B3=BC=EA=B0=92=EC=9D=B4=20=EC=A0=84=EB=8B=AC?= =?UTF-8?q?=EB=90=98=EC=A7=80=20=EC=95=8A=EC=95=84=EC=84=9C=20=ED=8C=8C?= =?UTF-8?q?=EC=9D=BC=EC=B2=A8=EB=B6=80=EA=B0=80=20=EB=90=98=EC=A7=80=20?= =?UTF-8?q?=EC=95=8A=EB=8A=94=20=EB=AC=B8=EC=A0=9C=EB=A5=BC=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5822 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- classes/module/ModuleObject.class.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/classes/module/ModuleObject.class.php b/classes/module/ModuleObject.class.php index 264400d79..aef05c31e 100644 --- a/classes/module/ModuleObject.class.php +++ b/classes/module/ModuleObject.class.php @@ -300,12 +300,15 @@ $this->setTemplatePath($oModule->getTemplatePath()); $this->setTemplateFile($oModule->getTemplateFile()); + $this->adds($oModule->getVariables()); + // forward 모듈을 찾지 못했다면 원 모듈의 default index action을 실행 } 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}(); } else { return false; } + } else { return false; }