Use 0775 rather than 0755 for folder permissions

This commit is contained in:
2020-11-07 01:57:06 +01:00
committed by Stefan Rohde-Enslin
parent bda32d8632
commit c783e030ba

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