From 9e2a167aeddc9737e11c00e4fc833dfb8925fc89 Mon Sep 17 00:00:00 2001 From: Philipp Date: Thu, 14 Mar 2019 22:59:30 +0100 Subject: [PATCH] Fix boolean value --- src/Core/Console/AutomaticInstallation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Console/AutomaticInstallation.php b/src/Core/Console/AutomaticInstallation.php index 0c12ba853b..da2fef2f6b 100644 --- a/src/Core/Console/AutomaticInstallation.php +++ b/src/Core/Console/AutomaticInstallation.php @@ -220,7 +220,7 @@ HELP; } $php_path = null; - if (!$configCache->has('config', 'php_path')) { + if ($configCache->has('config', 'php_path')) { $php_path = $configCache->get('config', 'php_path'); }