dokuwiki/inc/Action/Recover.php
Daniel Baumann 329a2a3786
Adding upstream version 2024-02-06b.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-03-17 10:42:42 +01:00

24 lines
349 B
PHP

<?php
namespace dokuwiki\Action;
use dokuwiki\Action\Exception\ActionAbort;
/**
* Class Recover
*
* Recover a draft
*
* @package dokuwiki\Action
*/
class Recover extends AbstractAliasAction
{
/**
* @inheritdoc
* @throws ActionAbort
*/
public function preProcess()
{
throw new ActionAbort('edit');
}
}