helly Fri Apr 30 13:54:46 2004 EDT
Modified files: (Branch: PHP_4_3)
/php-src run-tests.php NEWS
Log:
MFH Bugfix #28229 (PATCH run-tests tripped up by spaces in names)
http://cvs.php.net/diff.php/php-src/run-tests.php?r1=1.119.2.35&r2=1.119.2.36&ty=u
Index: php-src/run-tests.php
diff -u php-src/run-tests.php:1.119.2.35 php-src/run-tests.php:1.119.2.36
--- php-src/run-tests.php:1.119.2.35 Sun Jul 27 12:59:04 2003
+++ php-src/run-tests.php Fri Apr 30 13:54:45 2004
@@ -680,7 +680,7 @@
putenv("CONTENT_TYPE=application/x-www-form-urlencoded");
putenv("CONTENT_LENGTH=$content_length");
- $cmd = "$php$ini_settings -f $tmp_file 2>&1 < $tmp_post";
+ $cmd = "$php$ini_settings -f \"$tmp_file\" 2>&1 < $tmp_post";
} else {
@@ -688,7 +688,7 @@
putenv("CONTENT_TYPE=");
putenv("CONTENT_LENGTH=");
- $cmd = "$php$ini_settings -f $tmp_file$args 2>&1";
+ $cmd = "$php$ini_settings -f \"$tmp_file\" $args 2>&1";
}
if (DETAILED) echo "
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1247.2.652&r2=1.1247.2.653&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1247.2.652 php-src/NEWS:1.1247.2.653
--- php-src/NEWS:1.1247.2.652 Fri Apr 30 09:26:05 2004
+++ php-src/NEWS Fri Apr 30 13:54:45 2004
@@ -5,6 +5,7 @@
then 1 character long. (Ilia)
- Fixed handling of return values from storred procedures in mssql_execute()
with multiple result sets returned. (Frank)
+- Fixed bug #28229 (run-tests tripped up by spaces in names). (Marcus)
- Fixed bug #28228 (number_format() does not allow empty decimal separator).
(Ilia)
- Fixed bug #28196 (missing error constants in cURL extension). (Ilia)
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php