iliaa           Mon Nov 24 21:23:45 2008 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/mbstring       php_unicode.c 
    /php-src    NEWS 
  Log:
  
  MFB: Fixed bug #46626 (mb_convert_case does not handle apostrophe correctly)
  
http://cvs.php.net/viewvc.cgi/php-src/ext/mbstring/php_unicode.c?r1=1.11.2.2.2.4&r2=1.11.2.2.2.5&diff_format=u
Index: php-src/ext/mbstring/php_unicode.c
diff -u php-src/ext/mbstring/php_unicode.c:1.11.2.2.2.4 
php-src/ext/mbstring/php_unicode.c:1.11.2.2.2.5
--- php-src/ext/mbstring/php_unicode.c:1.11.2.2.2.4     Sun Feb 17 02:01:41 2008
+++ php-src/ext/mbstring/php_unicode.c  Mon Nov 24 21:23:45 2008
@@ -308,7 +308,7 @@
                        for (i = 0; i < unicode_len; i+=4) {
                                int res = php_unicode_is_prop(
                                        BE_ARY_TO_UINT32(&unicode_ptr[i]),
-                                       
UC_MN|UC_ME|UC_CF|UC_LM|UC_SK|UC_LU|UC_LL|UC_LT, 0);
+                                       
UC_MN|UC_ME|UC_CF|UC_LM|UC_SK|UC_LU|UC_LL|UC_LT|UC_PO|UC_OS, 0);
                                if (mode) {
                                        if (res) {
                                                
UINT32_TO_BE_ARY(&unicode_ptr[i],
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.1328&r2=1.2027.2.547.2.1329&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.1328 php-src/NEWS:1.2027.2.547.2.1329
--- php-src/NEWS:1.2027.2.547.2.1328    Mon Nov 24 15:37:33 2008
+++ php-src/NEWS        Mon Nov 24 21:23:45 2008
@@ -6,6 +6,8 @@
 - Fixed memory leak inside readline_callback_handler_remove() function. 
(Felipe)
 - Fixed bug #46649 (Setting array element with that same array produces 
   inconsistent results). (Arnaud)
+- Fixed bug #46626 (mb_convert_case does not handle apostrophe correctly).
+  (Ilia)
 
 20 Nov 2008, PHP 5.2.7RC4
 - Added logging option for error_log to send directly to SAPI. (Stas)



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

Reply via email to