Index: /trunk/admin/common-zh-simplified-utf-8.lang.php
===================================================================
--- /trunk/admin/common-zh-simplified-utf-8.lang.php	(revision 146)
+++ /trunk/admin/common-zh-simplified-utf-8.lang.php	(revision 147)
@@ -91,6 +91,6 @@
 		'offset'
 		=> '位置',
-		''
-		=> '',
+		'Module Info'
+		=> '模块信息',
 		''
 		=> '',
Index: /trunk/admin/common-zh-traditional-utf-8.lang.php
===================================================================
--- /trunk/admin/common-zh-traditional-utf-8.lang.php	(revision 146)
+++ /trunk/admin/common-zh-traditional-utf-8.lang.php	(revision 147)
@@ -91,6 +91,6 @@
 		'offset'
 		=> '位置',
-		''
-		=> '',
+		'Module Info'
+		=> '組元訊息',
 		''
 		=> '',
Index: /trunk/admin/xcache.css
===================================================================
--- /trunk/admin/xcache.css	(revision 146)
+++ /trunk/admin/xcache.css	(revision 147)
@@ -7,4 +7,10 @@
 table.cycles th { background-color: #9999cc; color: black; font-weight: bold; height: 20px; line-height: 20px; font-family: serif; }
 th a { color: black; font-weight: bold; display: block; width: 100%; height: 100%; }
+.moduleinfo table { border: 1px solid black; }
+.moduleinfo table th, .moduleinfo table td { border: 1px solid black; }
+.moduleinfo table th { font-weight: bold; }
+.moduleinfo .e {background-color: #ccccff; font-weight: bold; color: #000000;}
+.moduleinfo .h {background-color: #9999cc; font-weight: bold; color: #000000;}
+.moduleinfo .v {background-color: #cccccc; color: #000000;}
 .button { }
 span.sortarrow { color: white; text-decoration: none; }
Index: /trunk/admin/xcache.php
===================================================================
--- /trunk/admin/xcache.php	(revision 146)
+++ /trunk/admin/xcache.php	(revision 147)
@@ -99,4 +99,5 @@
 $vcnt = xcache_count(XC_TYPE_VAR);
 
+$moduleinfo = null;
 $type_none = -1;
 if (!isset($_GET['type'])) {
@@ -189,4 +190,13 @@
 	$_GET['type'] = $type_none;
 	$cachelist = array();
+	ob_start();
+	phpinfo(INFO_MODULES);
+	$moduleinfo = ob_get_clean();
+	if (preg_match('!XCache</a></h2>(.*?)<h2><a name="module_!is', $moduleinfo, $m)) {
+		$moduleinfo = $m[1];
+	}
+	else {
+		$moduleinfo = null;
+	}
 	break;
 }
Index: /trunk/admin/xcache.tpl.php
===================================================================
--- /trunk/admin/xcache.tpl.php	(revision 146)
+++ /trunk/admin/xcache.tpl.php	(revision 147)
@@ -246,4 +246,11 @@
 	}
 }
+if ($moduleinfo) {
+	$t_moduleinfo = _T("Module Info");
+	echo <<<HTML
+<h2>$t_moduleinfo</h2>
+<div class="moduleinfo">$moduleinfo</div>
+HTML;
+}
 ?>
 <div class="footnote">
