From 638df6df7f5105a68e19c016b1a34cf8b8b6a1bb Mon Sep 17 00:00:00 2001 From: azammitdcarf Date: Tue, 2 Dec 2008 04:59:42 +0000 Subject: [PATCH] removed quotation marks --- functions/functions.process.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/functions.process.php b/functions/functions.process.php index a25ffed9..6eb2a43b 100644 --- a/functions/functions.process.php +++ b/functions/functions.process.php @@ -114,7 +114,7 @@ function start_process($filename) //execute the process in the background - pass the process_id as the first argument if (substr(PHP_OS, 0, 3) == 'WIN') - $proc = popen(WINDOWS_PHP_EXEC . ' "' . $filename . '" ' . $args, 'r'); + $proc = popen(WINDOWS_PHP_EXEC . ' ' . $filename . ' ' . $args, 'r'); else $proc = popen(PHP_EXEC . ' ' . $filename . ' ' . $args . ' &', 'r');