Add missing space between PHP path and script in App->proc_run (#5468)

This commit is contained in:
Hypolite Petovan
2018-07-23 10:43:39 -04:00
committed by GitHub
parent 2d0a749734
commit 38f341e064

View File

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