mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
[更新]修改系统授权方法大小写处理
This commit is contained in:
parent
50d3875224
commit
a34cf9ed43
@ -73,7 +73,7 @@ class NodeService
|
||||
public static function checkAuthNode($node)
|
||||
{
|
||||
list($module, $controller, $action) = explode('/', str_replace(['?', '=', '&'], '/', $node . '///'));
|
||||
$currentNode = self::parseNodeStr("{$module}/{$controller}/{$action}");
|
||||
$currentNode = self::parseNodeStr("{$module}/{$controller}") . strtolower("/{$action}");
|
||||
if (session('user.username') === 'admin' || stripos($node, 'admin/index') === 0) {
|
||||
return true;
|
||||
}
|
||||
@ -129,7 +129,7 @@ class NodeService
|
||||
}
|
||||
foreach (get_class_methods($className) as $funcName) {
|
||||
if (strpos($funcName, '_') !== 0 && $funcName !== 'initialize') {
|
||||
$nodes[] = self::parseNodeStr("{$matches[1]}/{$matches[2]}/{$funcName}");
|
||||
$nodes[] = self::parseNodeStr("{$matches[1]}/{$matches[2]}/") . strtolower($funcName);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user