作者 Twhmr

修复Api模块语言包加载不到文件名以_分割的文件

... ... @@ -116,7 +116,7 @@ class Api
$this->auth = Auth::instance();
$modulename = $this->request->module();
$controllername = strtolower($this->request->controller());
$controllername = Loader::parseName($this->request->controller());
$actionname = strtolower($this->request->action());
// token
... ...