From: Philipp Date: Thu, 14 Mar 2019 21:59:30 +0000 (+0100) Subject: Fix boolean value X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c5cbba3416e55b12cc512da495736aba80f6f7d4;p=friendica.git Fix boolean value --- diff --git a/src/Core/Console/AutomaticInstallation.php b/src/Core/Console/AutomaticInstallation.php index 32dbf9567e..280e3d1071 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'); }