Fix #844 fill in default act if none is given in the URL

This commit is contained in:
Kijin Sung 2017-06-09 22:46:39 +09:00
parent 224b2748a5
commit d25cf782e9

View file

@ -735,6 +735,10 @@ class ModuleHandler extends Handler
}
$oModule->setAct($this->act);
if(!Context::get('act'))
{
Context::set('act', $this->act);
}
$this->module_info->module_type = $type;
$oModule->setModuleInfo($this->module_info, $xml_info);