From: Hypolite Petovan Date: Mon, 23 Jul 2018 14:43:39 +0000 (-0400) Subject: Add missing space between PHP path and script in App->proc_run (#5468) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=38f341e06408770b1f65a2ffffdb237ef3330c6f;p=friendica.git Add missing space between PHP path and script in App->proc_run (#5468) --- diff --git a/src/App.php b/src/App.php index 4d46e16042..49c85abec8 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) {