From ad825aa88a1b5e76421dd1253e4a5a8f5ae471a7 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Fri, 7 Oct 2016 23:16:33 +0200 Subject: [PATCH] [FileCache] Assign same permission to group as others It makes no sense for the group to get less access rights than anyone else --- caches/FileCache.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/caches/FileCache.php b/caches/FileCache.php index e3d86ee..5f74652 100644 --- a/caches/FileCache.php +++ b/caches/FileCache.php @@ -75,8 +75,8 @@ class FileCache extends CacheAbstract { // FIXME : implement recursive dir creation if(!is_dir($cacheDir)){ - mkdir($cacheDir,0705); - chmod($cacheDir,0705); + mkdir($cacheDir,0755); + chmod($cacheDir,0755); } return $cacheDir;