From: Thomas Citharel Date: Thu, 8 Dec 2016 14:19:33 +0000 (+0100) Subject: Merge pull request #2689 from wallabag/change-chmod X-Git-Tag: 2.2.0~3^2~29 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=edb9feb472e6bfe3678a944360eaecb7e6c9e567;hp=75ae3c8d82f6e31319667c74dbbca98ab95c88c8;p=github%2Fwallabag%2Fwallabag.git Merge pull request #2689 from wallabag/change-chmod Replaced chmod for download pictures feature --- diff --git a/src/Wallabag/CoreBundle/Helper/DownloadImages.php b/src/Wallabag/CoreBundle/Helper/DownloadImages.php index 264bc6a3..c83f9618 100644 --- a/src/Wallabag/CoreBundle/Helper/DownloadImages.php +++ b/src/Wallabag/CoreBundle/Helper/DownloadImages.php @@ -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); } }