From 0759438031872d55bfaca59c54123dd34a2182b0 Mon Sep 17 00:00:00 2001 From: taggon Date: Wed, 16 Mar 2011 02:50:12 +0000 Subject: [PATCH] =?UTF-8?q?r8185=20=EB=B3=B4=EC=99=84?= 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@8187 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- classes/module/ModuleHandler.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/module/ModuleHandler.class.php b/classes/module/ModuleHandler.class.php index 1391a7aff..e8720f867 100644 --- a/classes/module/ModuleHandler.class.php +++ b/classes/module/ModuleHandler.class.php @@ -145,7 +145,7 @@ $this->module_info->mid = $this->mid; // Still no module? it's an error - if(!$this->module) $this->error = 'msg_module_is_not_exists'; + if(!$this->module) $this->error = 'msg_module_does_not_exist'; // If mid exists, set mid into context if($this->mid) Context::set('mid', $this->mid, true); @@ -193,7 +193,7 @@ // still no act means error if(!$this->act) { - $this->error = 'msg_module_is_not_exists'; + $this->error = 'msg_module_does_not_exist'; return; }