mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 04:58:01 +01:00
Change directory permissions to an octal value.
This commit is contained in:
parent
50ca465835
commit
76f1361dda
2 changed files with 2 additions and 2 deletions
|
@ -96,6 +96,6 @@
|
|||
umask(0);
|
||||
|
||||
if (!is_dir($destination))
|
||||
mkdir($destination, 777, true);
|
||||
mkdir($destination, 0777, true);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -357,7 +357,7 @@
|
|||
umask(0);
|
||||
|
||||
if (!is_dir($destination))
|
||||
mkdir($destination, 777, true);
|
||||
mkdir($destination, 0777, true);
|
||||
}
|
||||
|
||||
public function hasCover() {
|
||||
|
|
Loading…
Reference in a new issue