removed mods directory from the ATutor codebase
[atutor.git] / mods / wiki / plugins / interwiki / walking.php
diff --git a/mods/wiki/plugins/interwiki/walking.php b/mods/wiki/plugins/interwiki/walking.php
deleted file mode 100644 (file)
index c47c63d..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-
-/*
-   Provides WikiFeatures:InterMapWalking, which will automatically
-   redirect users to foreign Wikis, if an InterMap page name is
-   detected.
-   WARNING: This is already a core feature, don't load this plugin!
-*/
-
-
-$ewiki_plugins["handler"][] = "ewiki_intermap_walking";
-
-
-function ewiki_intermap_walking($id, &$data, $action) {
-   if (empty($data["version"]) && ($href = ewiki_interwiki($id, $uu))) {
-      header("Location: $href");
-      return("<a href=\"$href\">$href</a>");
-   }
-}
-
-
-?>
\ No newline at end of file