mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-31 08:05:58 +02:00
[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
|
||||
if(!is_dir($cacheDir)){
|
||||
mkdir($cacheDir,0705);
|
||||
chmod($cacheDir,0705);
|
||||
mkdir($cacheDir,0755);
|
||||
chmod($cacheDir,0755);
|
||||
}
|
||||
|
||||
return $cacheDir;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue