From bd0b0073a7ff1bb61378aae1a2eaacf9b495755f Mon Sep 17 00:00:00 2001
From: "Hahn Axel (hahn)" <axel.hahn@unibe.ch>
Date: Fri, 2 May 2025 14:21:31 +0200
Subject: [PATCH] undoi - set __cache perms 0770 --> 0750

---
 classes/cronlog.class.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/classes/cronlog.class.php b/classes/cronlog.class.php
index 5b7063a..eec642a 100644
--- a/classes/cronlog.class.php
+++ b/classes/cronlog.class.php
@@ -201,7 +201,7 @@ class cronlog
     protected function _getCacheDir(): string
     {
         if(!is_dir("$this->_sDataDir/__cache")) {
-            mkdir("$this->_sDataDir/__cache", 0770, true);
+            mkdir("$this->_sDataDir/__cache", 0750, true);
         }
         return "$this->_sDataDir/__cache";
     }
-- 
GitLab