moriyoshi Sat Oct 9 04:16:34 2004 EDT
Modified files:
/php-src/ext/mbstring/tests htmlent.phpt
Log:
- Fix test. I have no idea why the test was left this way.
http://cvs.php.net/diff.php/php-src/ext/mbstring/tests/htmlent.phpt?r1=1.5&r2=1.6&ty=u
Index: php-src/ext/mbstring/tests/htmlent.phpt
diff -u php-src/ext/mbstring/tests/htmlent.phpt:1.5
php-src/ext/mbstring/tests/htmlent.phpt:1.6
--- php-src/ext/mbstring/tests/htmlent.phpt:1.5 Mon Aug 2 04:27:57 2004
+++ php-src/ext/mbstring/tests/htmlent.phpt Sat Oct 9 04:16:29 2004
@@ -28,11 +28,14 @@
?>
<?php echo mb_http_input('l').'>'.mb_internal_encoding().'>'.mb_http_output();?>
-<?php
mb_parse_str("test=@AB€‚äöü€⟨⟩",
$test);
-print_r($test['test']);
+<?php
mb_parse_str("test=&@AB€‚äöü€⟨⟩",
$test);
+print_r($test);
?>
===DONE===
--EXPECT--
HTML-ENTITIES>UTF-8>HTML-ENTITIES
-test='&&;&@AB€‚äöü€⟨⟩'
+Array
+(
+ [test] => &@AB€‚äöü€⟨⟩
+)
===DONE===
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php