Merge pull request #2689 from wallabag/change-chmod

Replaced chmod for download pictures feature
This commit is contained in:
Thomas Citharel 2016-12-08 15:19:33 +01:00 committed by GitHub
commit edb9feb472
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);
}
}