about summary refs log tree commit diff stats
path: root/wiki/inc/Action/Denied.php
diff options
context:
space:
mode:
Diffstat (limited to 'wiki/inc/Action/Denied.php')
-rw-r--r--wiki/inc/Action/Denied.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/wiki/inc/Action/Denied.php b/wiki/inc/Action/Denied.php
deleted file mode 100644
index c8e0192..0000000
--- a/wiki/inc/Action/Denied.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-namespace dokuwiki\Action;
-
-/**
- * Class Denied
- *
- * Show the access denied screen
- *
- * @package dokuwiki\Action
- */
-class Denied extends AbstractAclAction {
-
-    /** @inheritdoc */
-    public function minimumPermission() {
-        return AUTH_NONE;
-    }
-
-    public function tplContent() {
-        html_denied();
-    }
-
-}