Index: temp/trunk/html/admin/system/module.php
===================================================================
--- temp/trunk/html/admin/system/module.php	(revision 6610)
+++ temp/trunk/html/admin/system/module.php	(revision 6626)
@@ -59,17 +59,5 @@
 $path = MODULE_PATH . $objPage->arrUpdate[0]['main_php'];
 
-if(file_exists($path)) {
-	$src_fp = fopen($path, "rb");
-	if($src_fp) {
-		while (!feof($src_fp)) {
-			$line = fgets($src_fp);
-			if(ereg("@version", $line)) {
-				$arrLine = split(" ", $line);
-				sfPrintR($arrLine);
-			}
-		}
-		fclose($src_fp);
-	}	
-}
+print(sfGetFileVersion($path));
 
 $objView->assignobj($objPage);		//ÊÑ¿ô¤ò¥Æ¥ó¥×¥ì¡¼¥È¤Ë¥¢¥µ¥¤¥ó¤¹¤ë
Index: temp/trunk/data/lib/slib.php
===================================================================
--- temp/trunk/data/lib/slib.php	(revision 6602)
+++ temp/trunk/data/lib/slib.php	(revision 6626)
@@ -2556,4 +2556,20 @@
 }
 
+function sfGetFileVersion($path) {
+	if(file_exists($path)) {
+	$src_fp = fopen($path, "rb");
+	if($src_fp) {
+		while (!feof($src_fp)) {
+			$line = fgets($src_fp);
+			if(ereg("@version", $line)) {
+				$arrLine = split(" ", $line);
+				$version = $arrLine[5];
+			}
+		}
+		fclose($src_fp);
+	}
+	return $version;
+}
+
 /* ¥Ç¥Ð¥Ã¥°ÍÑ ------------------------------------------------------------------------------------------------*/
 function sfPrintR($obj) {
Index: temp/trunk/data/downloads/module/ebis_tag.php
===================================================================
--- temp/trunk/data/downloads/module/ebis_tag.php	(revision 6626)
+++ temp/trunk/data/downloads/module/ebis_tag.php	(revision 6626)
@@ -0,0 +1,29 @@
+<?php
+/**
+ * 
+ * @copyright	2000-2006 LOCKON CO.,LTD. All Rights Reserved.
+ * @version	CVS: $Id$
+ * @link		http://www.lockon.co.jp/
+ *
+ */
+
+require_once("../../require.php");
+
+//¥Ú¡¼¥¸´ÉÍý¥¯¥é¥¹
+class LC_Page {
+	//¥³¥ó¥¹¥È¥é¥¯¥¿
+	function LC_Page() {
+		//¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È¤Î»ØÄê
+		$this->tpl_mainpage = MODULE_PATH . 'ebis_tag.tpl';
+		$this->tpl_subtitle = 'EBiS¥¿¥°Ëä¤áµ¡Ç½';
+	}
+}
+$objPage = new LC_Page();
+$objView = new SC_AdminView();
+
+sfPrintR($_POST);
+
+$objView->assignobj($objPage);		//ÊÑ¿ô¤ò¥Æ¥ó¥×¥ì¡¼¥È¤Ë¥¢¥µ¥¤¥ó¤¹¤ë
+$objView->display($objPage->tpl_mainpage);		//¥Æ¥ó¥×¥ì¡¼¥È¤Î½ÐÎÏ
+//-------------------------------------------------------------------------------------------------------
+?>
