I got the permissions wrong (#1616)

it should have been in octal mod (leading 0)
also updated the fax application as it needs the stickygid too
This commit is contained in:
Mafoo
2016-05-26 12:55:46 +01:00
committed by FusionPBX
parent 86c4742347
commit 71525c26b0
17 changed files with 42 additions and 59 deletions

View File

@@ -175,7 +175,7 @@
throw new Exception("recursive_copy() source directory '".$src."' does not exist.");
}
if (!is_dir($dst)) {
if (!mkdir($dst,2770,true)) {
if (!mkdir($dst,02770,true)) {
throw new Exception("recursive_copy() failed to create destination directory '".$dst."'");
}
}