From c783e030ba1a02398a6dce2c77be2297461849c7 Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Sat, 7 Nov 2020 01:57:06 +0100 Subject: [PATCH] Use 0775 rather than 0755 for folder permissions --- src/MDOutputHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MDOutputHandler.php b/src/MDOutputHandler.php index 235c7a0..8b5845f 100644 --- a/src/MDOutputHandler.php +++ b/src/MDOutputHandler.php @@ -81,7 +81,7 @@ final class MDOutputHandler { $this->_file_logging = $input; if ($this->_file_logging === true) { - if (!\is_dir(__DIR__ . "/../logs")) mkdir(__DIR__ . "/../logs", 0755); + if (!\is_dir(__DIR__ . "/../logs")) mkdir(__DIR__ . "/../logs", 0775); \touch($this->_logfile); }