Index: branches/dev/data/downloads/module/security/security.php
===================================================================
--- branches/dev/data/downloads/module/security/security.php	(revision 12096)
+++ branches/dev/data/downloads/module/security/security.php	(revision 12097)
@@ -93,3 +93,25 @@
     return $arrResult;
 }
+
+
+// install.inc¤Î¥Õ¥¡¥¤¥ë¤ò¥Á¥§¥Ã¥¯¤¹¤ë
+function sfCheckInstallInc() {
+    // install.inc¤Î¥Ñ¥¹¤ò¼èÆÀ¤¹¤ë
+    $inst_inc = DATA_PATH . 'install.inc';
+    if(file_exists($inst_inc)) {
+        if($fp = fopen($inst_inc)) {
+            $data = fread($fp, filesize($inst_inc));
+            fclose($fp);
+        }
+        
+        $arrResult['result'] = "¡ß";
+        $arrResult['detail'] = $data;
+        
+        
+    } else {
+        $arrResult['result'] = "¡û";
+        $arrResult['detail'] = "install.inc¤Ï¡¢Â¸ºß¤·¤Þ¤»¤ó¡£";               
+    }
+}
+
 ?>
