Change directory permissions to an octal value.

This commit is contained in:
Peter Deltchev 2015-09-07 18:46:39 -07:00
parent 50ca465835
commit 76f1361dda
2 changed files with 2 additions and 2 deletions

View file

@ -96,6 +96,6 @@
umask(0); umask(0);
if (!is_dir($destination)) if (!is_dir($destination))
mkdir($destination, 777, true); mkdir($destination, 0777, true);
} }
} }

View file

@ -357,7 +357,7 @@
umask(0); umask(0);
if (!is_dir($destination)) if (!is_dir($destination))
mkdir($destination, 777, true); mkdir($destination, 0777, true);
} }
public function hasCover() { public function hasCover() {