* If the module and method if defined in workflow, run workflow engine.

This commit is contained in:
liugang
2019-07-08 10:56:47 +08:00
parent d8d90d83f3
commit 308bb3d1be
4 changed files with 250 additions and 12 deletions
+1 -1
View File
@@ -1599,8 +1599,8 @@ class baseRouter
$moduleName = isset($_GET[$this->config->moduleVar]) ? strtolower($_GET[$this->config->moduleVar]) : $this->config->default->module;
$methodName = isset($_GET[$this->config->methodVar]) ? strtolower($_GET[$this->config->methodVar]) : $this->config->default->method;
$this->setModuleName($moduleName);
$this->setControlFile();
$this->setMethodName($methodName);
$this->setControlFile();
}
/**