[更新]修复权限禁用后仍然可以读取节点

This commit is contained in:
邹景立 2017-03-23 13:33:40 +08:00
parent 7e4d270fd6
commit 342d19366a

View File

@ -33,7 +33,10 @@ class Node {
public static function applyAuthNode() {
cache('need_access_node', null);
if (($authorize = session('user.authorize'))) {
$authorizeids = Db::name('SystemAuth')->where('status', '1')->where('id', 'in', explode(',', $authorize))->column('id');
$authorizeids = Db::name('SystemAuth')
->where('id', 'in', explode(',', $authorize))
->where('status', '1')
->column('id');
if (empty($authorizeids)) {
return session('user.nodes', []);
}