Index: /trunk/xpressme_integration_kit/include/xpress_block_render.php
===================================================================
--- /trunk/xpressme_integration_kit/include/xpress_block_render.php	(revision 485)
+++ /trunk/xpressme_integration_kit/include/xpress_block_render.php	(revision 486)
@@ -29,5 +29,7 @@
 			$ret = @xpress_XML_unserialize($xml_data);
 			if (strstr($xml_data, '<?xml version="1.0" encoding="EUC-JP" ?>') !== false){
-				$ans = mb_convert_variables('EUC-JP' , 'UTF-8', &$ret);
+				if (version_compare(PHP_VERSION, '5.0.0', '>')) {
+					$ans = mb_convert_variables('EUC-JP' , 'UTF-8', &$ret); //xpress_XML_unserialize() Return UTF-8 at PHP5
+				}
 			}
 			return $ret;
