mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-25 06:27:59 +01:00
Merge rPF76f1361ddafe: Change directory permissions to an octal value.
This commit is contained in:
parent
8088b66b8e
commit
0db774aadd
2 changed files with 2 additions and 2 deletions
|
@ -111,7 +111,7 @@ class Image extends Model
|
|||
umask(0);
|
||||
|
||||
if (!is_dir($destination)) {
|
||||
mkdir($destination, 777, true);
|
||||
mkdir($destination, 0777, true);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -447,7 +447,7 @@ class Track extends Model
|
|||
umask(0);
|
||||
|
||||
if (!is_dir($destination)) {
|
||||
mkdir($destination, 777, true);
|
||||
mkdir($destination, 0777, true);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue