removal of old files
[silc.git] / public_html / todo.php
diff --git a/public_html/todo.php b/public_html/todo.php
deleted file mode 100644 (file)
index 375e4c6..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-<br />
-<tt>
-<font face="courier" size="3">
-<?php
-
-if (Is_Readable($DocRoot."todo.txt")) {
-  $fp = FOpen($DocRoot."todo.txt", "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);
-  }
-?>
-</font>
-</tt>