Add missing space between PHP path and script in App->proc_run (#5468)
This commit is contained in:
@@ -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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user