Ticket #6092: 6092-2.diff
| File 6092-2.diff, 492 bytes (added by tenpura, 5 years ago) |
|---|
-
wp-settings.php
356 356 * since we want to use the mb_ functions for utf-8 strings 357 357 */ 358 358 if (function_exists('mb_internal_encoding')) { 359 if (get_option('blog_charset')) 360 mb_internal_encoding(get_option('blog_charset')); 361 else 359 if (!@mb_internal_encoding(get_option('blog_charset'))) 362 360 mb_internal_encoding('UTF-8'); 363 361 } 364 362