]> git.mxchange.org Git - friendica.git/commitdiff
Add missing space between PHP path and script in App->proc_run (#5468)
authorHypolite Petovan <mrpetovan@eml.cc>
Mon, 23 Jul 2018 14:43:39 +0000 (10:43 -0400)
committerGitHub <noreply@github.com>
Mon, 23 Jul 2018 14:43:39 +0000 (10:43 -0400)
src/App.php

index 4d46e16042df206405436efe5ba75efe09593fb5..49c85abec8fe6184fc8264612e28baac6ae3d3b7 100644 (file)
@@ -1128,7 +1128,7 @@ class App
                        return;
                }
 
-               $cmdline = $this->getConfigValue('config', 'php_path', 'php') . $command;
+               $cmdline = $this->getConfigValue('config', 'php_path', 'php') . ' ' . $command;
 
                foreach ($args as $key => $value) {
                        if (!is_null($value) && is_bool($value) && !$value) {