- Timestamp:
- Aug 21, 2010, 1:16:15 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/xpressme_integration_kit/wp-content/plugins/xpressme/xpressme.php
r597 r633 70 70 { 71 71 $lang= WPLANG; 72 if($lang == 'ja_EUC'){ 73 $blog_charset = get_option('blog_charset'); 74 if ($blog_charset !=='EUC-JP') { 75 update_option('blog_charset', 'EUC-JP' ); 76 } 77 } 72 $blog_charset = get_option('blog_charset'); 73 switch ($lang) { 74 case 'ja_EUC': 75 if ($blog_charset !=='EUC-JP') update_option('blog_charset', 'EUC-JP' ); 76 break; 77 case 'ja_UTF': 78 case 'ja': 79 if ($blog_charset !=='UTF-8') update_option('blog_charset', 'UTF-8' ); 80 break; 81 default: 82 } 78 83 } 79 84
Note: See TracChangeset
for help on using the changeset viewer.