Use 0775 rather than 0755 for folder permissions

This commit is contained in:
Joshua Ramon Enslin 2020-11-07 01:57:06 +01:00 committed by Stefan Rohde-Enslin
parent bda32d8632
commit c783e030ba
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -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);
}