Add missing space between PHP path and script in App->proc_run (#5468)
This commit is contained in:
parent
2d0a749734
commit
38f341e064
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue