]> git.mxchange.org Git - friendica.git/commitdiff
Fix boolean value
authorPhilipp <admin+Github@philipp.info>
Thu, 14 Mar 2019 21:59:30 +0000 (22:59 +0100)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sat, 23 Mar 2019 03:31:47 +0000 (23:31 -0400)
src/Core/Console/AutomaticInstallation.php

index 32dbf9567e7d846f8e00771f5cf27f9a3667084f..280e3d10710091ae33a902d11caacf076df31d51 100644 (file)
@@ -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');
                }