removed mods directory from the ATutor codebase
[atutor.git] / mods / wiki / plugins / page / ewikilog.php
diff --git a/mods/wiki/plugins/page/ewikilog.php b/mods/wiki/plugins/page/ewikilog.php
deleted file mode 100644 (file)
index c9f09ad..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-
-/*
-   Prints out /tmp/ewiki.log for debugging
-*/
-/* 
-* @author alex wan <alex@burgiss.com>
-* @author andy fundinger <andy@burgiss.com> (Minor contributions and maintenance)
-*/
-
-$ewiki_plugins["page"]["EWikiLog"] = "ewiki_page_ewikilog";
-
-function ewiki_page_ewikilog($id, $data, $action) 
-{
-    ob_start();
-    echo ewiki_make_title($id, $id, 2);
-    echo '<pre>';
-    readfile(EWIKI_LOGFILE);
-    echo '</pre>';
-    $o = ob_get_contents();
-    ob_end_clean();
-
-    return($o);
-}
-
-
-
-?>
\ No newline at end of file