aharvey Mon, 19 Jul 2010 09:58:19 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=301390
Log:
Revert r301354, since we don't need a test for a bogus bug.
Changed paths:
D php/php-src/branches/PHP_5_3/ext/standard/tests/http/bug52359.phpt
Deleted: php/php-src/branches/PHP_5_3/ext/standard/tests/http/bug52359.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/standard/tests/http/bug52359.phpt
2010-07-19 08:20:42 UTC (rev 301389)
+++ php/php-src/branches/PHP_5_3/ext/standard/tests/http/bug52359.phpt
2010-07-19 09:58:19 UTC (rev 301390)
@@ -1,21 +0,0 @@
---TEST--
-Bug #52359 (http_build_query seem to encode array incorrectly)
---FILE--
-<?php
-$a = array(
- 'foo/bar' => array(
- '1',
- '2'
- ),
- 'bar' => 'foo'
-);
-
-$b = http_build_query($a, NULL, '&');
-var_dump($b);
-
-$c = urldecode($b);
-var_dump($c);
-?>
---EXPECTF--
-string(43) "foo%2Fbar%5B%5D=1&foo%2Fbar%5B%5D=2&bar=foo"
-string(31) "foo/bar[]=1&foo/bar[]=2&bar=foo"
\ No newline at end of file
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php