[FileCache] Assign same permission to group as others

It makes no sense for the group to get less access rights
than anyone else
This commit is contained in:
logmanoriginal 2016-10-07 23:16:33 +02:00
parent 45890d5969
commit ad825aa88a

View file

@ -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;