Created SILC GIT repository.
[silc.git] / public_html / html / install.php
diff --git a/public_html/html/install.php b/public_html/html/install.php
deleted file mode 100644 (file)
index 0ef0102..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-&nbsp;<br />
-<tt class="normal">
-<?php
-
-if (Is_Readable("docs/INSTALL")) {
-  $fp = FOpen("docs/INSTALL", "r");
-
-  while($line = FGets($fp, 255)) {
-    $newline = Ereg_Replace("^[ ]{2,4}","&nbsp;&nbsp;",$line);
-    $line = Ereg_Replace("^([\t]|[ ][\t])","&nbsp;&nbsp;&nbsp;&nbsp;",$newline);
-    printf("%s", nl2br($line));
-  }
-
-  FClose($fp);
-  }
-?>
-</tt>