Merge rPF76f1361ddafe: Change directory permissions to an octal value.

This commit is contained in:
Kelvin Zhang 2015-09-10 12:50:04 +01:00
parent 8088b66b8e
commit 0db774aadd
2 changed files with 2 additions and 2 deletions

View file

@ -111,7 +111,7 @@ class Image extends Model
umask(0);
if (!is_dir($destination)) {
mkdir($destination, 777, true);
mkdir($destination, 0777, true);
}
}
}

View file

@ -447,7 +447,7 @@ class Track extends Model
umask(0);
if (!is_dir($destination)) {
mkdir($destination, 777, true);
mkdir($destination, 0777, true);
}
}