mirror of https://gitee.com/karson/fastadmin.git
修复Api模块语言包加载不到文件名以_分割的文件
parent
b849191a1d
commit
d0e42a27b7
|
|
@ -116,7 +116,7 @@ class Api
|
||||||
$this->auth = Auth::instance();
|
$this->auth = Auth::instance();
|
||||||
|
|
||||||
$modulename = $this->request->module();
|
$modulename = $this->request->module();
|
||||||
$controllername = strtolower($this->request->controller());
|
$controllername = Loader::parseName($this->request->controller());
|
||||||
$actionname = strtolower($this->request->action());
|
$actionname = strtolower($this->request->action());
|
||||||
|
|
||||||
// token
|
// token
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue