removed mods directory from the ATutor codebase
[atutor.git] / mods / wiki / plugins / markup / phpwiki.php
diff --git a/mods/wiki/plugins/markup/phpwiki.php b/mods/wiki/plugins/markup/phpwiki.php
deleted file mode 100644 (file)
index 6b5cd1c..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-
-/*
-   this plugin converts the PhpWiki1.2 [[NoLink] to ErfurtWiki ![NoLink]
-   (fastly)
-*/
-
-
-$ewiki_plugins["format_source"][] = "ewiki_format_source_emulate_phpwiki12";
-
-
-function ewiki_format_source_emulate_phpwiki12(&$source) {
-   $source = str_replace("[[", "![", $source);
-}
-
-
-?>
\ No newline at end of file