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=&#64;&#65;&#66;&#128;&#129;&#130;&auml;&ouml;&uuml;&euro;&lang;&rang;",
 $test);
-print_r($test['test']);
+<?php 
mb_parse_str("test=&#38;&#64;&#65;&#66;&#128;&#129;&#130;&auml;&ouml;&uuml;&euro;&lang;&rang;",
 $test);
+print_r($test);
 ?>
 ===DONE===
 --EXPECT--
 HTML-ENTITIES>UTF-8>HTML-ENTITIES
-test='&&;&@AB&#128;&#129;&#130;&auml;&ouml;&uuml;&euro;&lang;&rang;'
+Array
+(
+    [test] => &@AB&#128;&#129;&#130;&auml;&ouml;&uuml;&euro;&lang;&rang;
+)
 ===DONE===

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to