mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
removed quotation marks
This commit is contained in:
@@ -114,7 +114,7 @@ function start_process($filename)
|
|||||||
|
|
||||||
//execute the process in the background - pass the process_id as the first argument
|
//execute the process in the background - pass the process_id as the first argument
|
||||||
if (substr(PHP_OS, 0, 3) == 'WIN')
|
if (substr(PHP_OS, 0, 3) == 'WIN')
|
||||||
$proc = popen(WINDOWS_PHP_EXEC . ' "' . $filename . '" ' . $args, 'r');
|
$proc = popen(WINDOWS_PHP_EXEC . ' ' . $filename . ' ' . $args, 'r');
|
||||||
else
|
else
|
||||||
$proc = popen(PHP_EXEC . ' ' . $filename . ' ' . $args . ' &', 'r');
|
$proc = popen(PHP_EXEC . ' ' . $filename . ' ' . $args . ' &', 'r');
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user