Merge pull request 'fixed' (#1) from zhangwei into dev

Reviewed-on: #1
This commit is contained in:
weiz 2023-12-07 18:09:33 +08:00
commit ea82709caf
2 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@
/runtime/* /runtime/*
!/runtime/index.html !/runtime/index.html
/config/install.lock /config/install.lock
/public/nginx.htaccess

View File

@ -30,6 +30,10 @@ class OperationLog
if (strtolower(str_replace('.', '\\', $request->controller())) === 'setting\system\log') { if (strtolower(str_replace('.', '\\', $request->controller())) === 'setting\system\log') {
return; return;
} }
if (strtolower(str_replace('.', '\\', $request->controller())) === 'auth\menu') {
return;
}
//获取操作注解 //获取操作注解
$notes = ''; $notes = '';