Index: Zend/zend.c =================================================================== RCS file: /repository/ZendEngine2/zend.c,v retrieving revision 1.417 diff -u -p -r1.417 zend.c --- Zend/zend.c 20 May 2008 15:03:13 -0000 1.417 +++ Zend/zend.c 21 May 2008 10:44:01 -0000 @@ -1185,26 +1185,6 @@ void zend_register_standard_ini_entries( int module_number = 0; REGISTER_INI_ENTRIES(); - - /* Make copies of HashTables with UNICODE */ - - if (UG(unicode)) { - UConverter *old_runtime_encoding_conv; - UErrorCode status = U_ZERO_ERROR; - - old_runtime_encoding_conv = UG(runtime_encoding_conv); - UG(runtime_encoding_conv) = ucnv_open("ASCII", &status); - - zend_hash_to_unicode(CG(function_table), (apply_func_t)function_to_unicode TSRMLS_CC); - CG(function_table)->pDestructor = ZEND_U_FUNCTION_DTOR; - zend_hash_to_unicode(CG(class_table), (apply_func_t)class_to_unicode TSRMLS_CC); - zend_hash_to_unicode(CG(auto_globals), NULL TSRMLS_CC); - zend_hash_to_unicode(EG(zend_constants), (apply_func_t)const_to_unicode TSRMLS_CC); - EG(zend_constants)->pDestructor = ZEND_U_CONSTANT_DTOR; - - ucnv_close(UG(runtime_encoding_conv)); - UG(runtime_encoding_conv) = old_runtime_encoding_conv; - } } /* }}} */