about summary refs log tree commit diff stats
path: root/wiki/inc/Action/Backlink.php
diff options
context:
space:
mode:
Diffstat (limited to 'wiki/inc/Action/Backlink.php')
-rw-r--r--wiki/inc/Action/Backlink.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/wiki/inc/Action/Backlink.php b/wiki/inc/Action/Backlink.php
deleted file mode 100644
index 0337917..0000000
--- a/wiki/inc/Action/Backlink.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-
-namespace dokuwiki\Action;
-
-/**
- * Class Backlink
- *
- * Shows which pages link to the current page
- *
- * @package dokuwiki\Action
- */
-class Backlink extends AbstractAction {
-
-    /** @inheritdoc */
-    public function minimumPermission() {
-        return AUTH_NONE;
-    }
-
-    /** @inheritdoc */
-    public function tplContent() {
-        html_backlinks();
-    }
-
-}