forked from blallo/rss-bridge
[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:
parent
45890d5969
commit
ad825aa88a
1 changed files with 2 additions and 2 deletions
|
@ -75,8 +75,8 @@ class FileCache extends CacheAbstract {
|
||||||
|
|
||||||
// FIXME : implement recursive dir creation
|
// FIXME : implement recursive dir creation
|
||||||
if(!is_dir($cacheDir)){
|
if(!is_dir($cacheDir)){
|
||||||
mkdir($cacheDir,0705);
|
mkdir($cacheDir,0755);
|
||||||
chmod($cacheDir,0705);
|
chmod($cacheDir,0755);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $cacheDir;
|
return $cacheDir;
|
||||||
|
|
Loading…
Reference in a new issue