Replaced chmod for download pictures feature

This commit is contained in:
Nicolas Lœuillet 2016-12-08 13:04:15 +01:00
parent 75ae3c8d82
commit e044d27f82
No known key found for this signature in database
GPG Key ID: BDC1EFB5CA0145F2
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ class DownloadImages
{
// if folder doesn't exist, attempt to create one and store the folder name in property $folder
if (!file_exists($this->baseFolder)) {
mkdir($this->baseFolder, 0777, true);
mkdir($this->baseFolder, 0755, true);
}
}