From: Nicolas LÅ“uillet Date: Thu, 8 Dec 2016 12:04:15 +0000 (+0100) Subject: Replaced chmod for download pictures feature X-Git-Tag: 2.2.0~3^2~29^2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=e044d27f8250dd52ecbbcc404ea7db11819442e6;p=github%2Fwallabag%2Fwallabag.git 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); } }