helly Fri Apr 30 04:18:54 2004 EDT Modified files: /php-src run-tests.php Log: Bugfix #28229 (PATCH run-tests tripped up by spaces in names) http://cvs.php.net/diff.php/php-src/run-tests.php?r1=1.193&r2=1.194&ty=u Index: php-src/run-tests.php diff -u php-src/run-tests.php:1.193 php-src/run-tests.php:1.194 --- php-src/run-tests.php:1.193 Tue Mar 30 18:58:47 2004 +++ php-src/run-tests.php Fri Apr 30 04:18:54 2004 @@ -814,7 +814,7 @@ putenv("CONTENT_TYPE=application/x-www-form-urlencoded"); putenv("CONTENT_LENGTH=$content_length"); - $cmd = "$php$pass_options$ini_settings -f $tmp_file 2>&1 < $tmp_post"; + $cmd = "$php$pass_options$ini_settings -f \"$tmp_file\" 2>&1 < $tmp_post"; } else { @@ -822,7 +822,7 @@ putenv("CONTENT_TYPE="); putenv("CONTENT_LENGTH="); - $cmd = "$php$pass_options$ini_settings -f $tmp_file$args 2>&1"; + $cmd = "$php$pass_options$ini_settings -f \"$tmp_file\" $args 2>&1"; } if (DETAILED) echo "
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php