2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

removed quotation marks

This commit is contained in:
azammitdcarf
2008-12-02 04:59:42 +00:00
parent 0f83bd06ab
commit 638df6df7f

View File

@@ -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');