v2.7.2 dev

* 2023-02-04 v2.7.2 dev
- 增加 [web-indexr](https://github.com/rehiy/web-indexr) 文件管理
- - web-indexr处于实验中,作为Tinyfilemanager的替代
- 修复开启登录上传后,上传者账号上传失败 [#87](https://github.com/icret/EasyImages2.0/issues/87#issue-1569794639)
- 优化排版和移动端显示
This commit is contained in:
icret
2023-02-04 10:55:33 +08:00
parent fae2b6effe
commit e632634154
8 changed files with 43 additions and 30 deletions

View File

@@ -32,7 +32,7 @@ if ($config['check_ip']) {
}
// 根据IP限制游客每日上传数量
if ($config['ip_upload_counts'] > 0 && !is_who_login(null)) {
if ($config['ip_upload_counts'] > 0 && !is_who_login('status')) {
$ipList = APP_ROOT . '/admin/logs/ipcounts/' . date('Ymd') . '.php';
if (is_file($ipList)) {
$ipList = file_get_contents($ipList);