From ecdf1ccb3254cdbe6f30f73fc67f211f8ca486c3 Mon Sep 17 00:00:00 2001 From: Gemorroj Date: Sun, 7 Jun 2020 00:50:26 +0300 Subject: [PATCH] Avoid check permissions on windows --- libraries/classes/Config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/classes/Config.php b/libraries/classes/Config.php index 4ce67e5ff5..6d9e91df71 100644 --- a/libraries/classes/Config.php +++ b/libraries/classes/Config.php @@ -763,7 +763,7 @@ class Config // This check is normally done after loading configuration $this->checkWebServerOs(); - if ($this->get('PMA_IS_WINDOWS') !== true) { + if ($this->get('PMA_IS_WINDOWS') === true) { return; }