about summary refs log tree commit diff stats
path: root/wiki/inc/Menu/Item/Revisions.php
diff options
context:
space:
mode:
Diffstat (limited to 'wiki/inc/Menu/Item/Revisions.php')
-rw-r--r--wiki/inc/Menu/Item/Revisions.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/wiki/inc/Menu/Item/Revisions.php b/wiki/inc/Menu/Item/Revisions.php
deleted file mode 100644
index 3009a79..0000000
--- a/wiki/inc/Menu/Item/Revisions.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-namespace dokuwiki\Menu\Item;
-
-/**
- * Class Revisions
- *
- * Access the old revisions of the current page
- */
-class Revisions extends AbstractItem {
-
-    /** @inheritdoc */
-    public function __construct() {
-        parent::__construct();
-
-        $this->accesskey = 'o';
-        $this->type = 'revs';
-        $this->svg = DOKU_INC . 'lib/images/menu/07-revisions_history.svg';
-    }
-
-}