]> git.mxchange.org Git - friendica.git/commitdiff
Simplify config.php_path access in App->proc_run
authorHypolite Petovan <mrpetovan@gmail.com>
Sun, 1 Jul 2018 08:05:52 +0000 (04:05 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Mon, 2 Jul 2018 11:48:33 +0000 (07:48 -0400)
src/App.php

index 38c4370168ddfb04d7f765551e53df17d5950bac..f4f5545bb32d2ed86472a9479a76fb0796d11337 100644 (file)
@@ -866,7 +866,7 @@ class App
                        return;
                }
 
-               array_unshift($args, ((x($this->config, 'php_path')) && (strlen($this->config['php_path'])) ? $this->config['php_path'] : 'php'));
+               array_unshift($args, $this->getConfigValue('config', 'php_path', 'php'));
 
                for ($x = 0; $x < count($args); $x ++) {
                        $args[$x] = escapeshellarg($args[$x]);