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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View 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) {