summaryrefslogtreecommitdiff
path: root/platform/www/inc/Action/Recover.php
diff options
context:
space:
mode:
Diffstat (limited to 'platform/www/inc/Action/Recover.php')
-rw-r--r--platform/www/inc/Action/Recover.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/platform/www/inc/Action/Recover.php b/platform/www/inc/Action/Recover.php
new file mode 100644
index 0000000..7966396
--- /dev/null
+++ b/platform/www/inc/Action/Recover.php
@@ -0,0 +1,21 @@
+<?php
+
+namespace dokuwiki\Action;
+
+use dokuwiki\Action\Exception\ActionAbort;
+
+/**
+ * Class Recover
+ *
+ * Recover a draft
+ *
+ * @package dokuwiki\Action
+ */
+class Recover extends AbstractAliasAction {
+
+ /** @inheritdoc */
+ public function preProcess() {
+ throw new ActionAbort('edit');
+ }
+
+}