r8185 보완

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@8187 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2011-03-16 02:50:12 +00:00
parent 982b532a77
commit 0759438031

View file

@ -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;
}