Merge #16165 - fix the permission checking avoid logic

Ref: ffc9a28eaf
Ref: 0138cb471f
Ref: f4582e083e

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2020-06-08 22:12:13 +02:00
commit 1c00db0dfd
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889

View File

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