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 05:55:46 -06:00
committed by FusionPBX
parent 86c4742347
commit 71525c26b0
17 changed files with 42 additions and 59 deletions
+1 -1
View File
@@ -69,7 +69,7 @@ if ($domains_processed == 1) {
foreach ($conf_lang_folders as $conf_lang_folder) {
//create phrases folder, if necessary
if (!file_exists($conf_lang_folder."/phrases/")) {
mkdir($conf_lang_folder."/phrases/", 2777);
mkdir($conf_lang_folder."/phrases/", 02770);
}
//parse language, open xml file
$conf_lang = substr($conf_lang_folder, -2);