From fb93814f020b815bcf3d5fbd39aefe9643baf111 Mon Sep 17 00:00:00 2001 From: filesite Date: Sun, 24 Nov 2024 21:07:12 +0800 Subject: [PATCH] bug fix: dir permission change to 755 --- plugins/Common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Common.php b/plugins/Common.php index 3cbc608..60c9398 100644 --- a/plugins/Common.php +++ b/plugins/Common.php @@ -548,7 +548,7 @@ Class Common { } if (!is_dir($cacheDir)) { - mkdir($cacheDir, 0744, true); + mkdir($cacheDir, 0755, true); } $cache_filename = "{$cacheDir}{$key}.json";