From 6e5f5bb4d31bebdacf651b43210406c0222d55d3 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 22 Dec 2019 08:25:30 +0100 Subject: [PATCH] change session directory permission --- DataStorage/Session/ConsoleSessionHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataStorage/Session/ConsoleSessionHandler.php b/DataStorage/Session/ConsoleSessionHandler.php index e1fb83e5d..1310babe9 100644 --- a/DataStorage/Session/ConsoleSessionHandler.php +++ b/DataStorage/Session/ConsoleSessionHandler.php @@ -72,7 +72,7 @@ final class ConsoleSessionHandler implements \SessionHandlerInterface, \SessionI { $this->savePath = $savePath; if (!\is_dir($this->savePath)) { - \mkdir($this->savePath, 0777); + \mkdir($this->savePath, 0755); } return true;