tony2001                Tue Jan 29 13:39:04 2008 UTC

  Added files:                 (Branch: PHP_5_2)
    /php-src/ext/standard/tests/strings bug43927.phpt 

  Modified files:              
    /php-src    NEWS 
    /php-src/ext/standard       html.c 
  Log:
  MFH: fix #43927 (koi8r is missing from html_entity_decode())
  patch by andy at demos dot su
  
  
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.1063&r2=1.2027.2.547.2.1064&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.1063 php-src/NEWS:1.2027.2.547.2.1064
--- php-src/NEWS:1.2027.2.547.2.1063    Tue Jan 29 10:44:53 2008
+++ php-src/NEWS        Tue Jan 29 13:39:03 2008
@@ -10,6 +10,8 @@
 
 - Fixed bug #43954 (Memory leak when sending the same HTTP status code
   multiple times). (Scott)
+- Fixed bug #43927 (koi8r is missing from html_entity_decode()). 
+  (andy at demos dot su, Tony)
 - Fixed faulty fix for bug #40189 (endless loop in zlib.inflate stream 
filter). 
   (Greg)
 - Fixed bug #43912 (Interbase column names are truncated to 31 characters).
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/html.c?r1=1.111.2.2.2.18&r2=1.111.2.2.2.19&diff_format=u
Index: php-src/ext/standard/html.c
diff -u php-src/ext/standard/html.c:1.111.2.2.2.18 
php-src/ext/standard/html.c:1.111.2.2.2.19
--- php-src/ext/standard/html.c:1.111.2.2.2.18  Mon Dec 31 07:20:12 2007
+++ php-src/ext/standard/html.c Tue Jan 29 13:39:03 2008
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: html.c,v 1.111.2.2.2.18 2007/12/31 07:20:12 sebastian Exp $ */
+/* $Id: html.c,v 1.111.2.2.2.19 2008/01/29 13:39:03 tony2001 Exp $ */
 
 /*
  * HTML entity resources:
@@ -954,6 +954,7 @@
                                        case cs_cp1251:
                                        case cs_8859_5:
                                        case cs_cp866:
+                                       case cs_koi8r:
                                                replacement[0] = k;
                                                replacement[1] = '\0';
                                                replacement_len = 1;

http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/bug43927.phpt?view=markup&rev=1.1
Index: php-src/ext/standard/tests/strings/bug43927.phpt
+++ php-src/ext/standard/tests/strings/bug43927.phpt

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

Reply via email to