From 38f341e06408770b1f65a2ffffdb237ef3330c6f Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Mon, 23 Jul 2018 10:43:39 -0400 Subject: [PATCH] Add missing space between PHP path and script in App->proc_run (#5468) --- src/App.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.php b/src/App.php index 4d46e1604..49c85abec 100644 --- a/src/App.php +++ b/src/App.php @@ -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) {