Index: /trunk/xpressme_integration_kit/wp-content/plugins/xpressme/xpressme.php
===================================================================
--- /trunk/xpressme_integration_kit/wp-content/plugins/xpressme/xpressme.php	(revision 583)
+++ /trunk/xpressme_integration_kit/wp-content/plugins/xpressme/xpressme.php	(revision 584)
@@ -66,4 +66,16 @@
 	}
 }
+
+function  blog_charset_check()
+{
+	$lang= WPLANG;
+	if($lang == 'ja_EUC'){
+		$blog_charset = get_option('blog_charset');
+		if ($blog_charset !=='EUC-JP') {
+			update_option('blog_charset', 'EUC-JP' );
+		}
+	}
+}
+
 add_action('admin_menu', 'my_plugin_menu');
 
@@ -85,4 +97,8 @@
 
 add_action("the_content",	"set_post_views_count");
+
+// blog charset check
+add_action("init",	"blog_charset_check");
+
 
 //XOOPS notifiction
