22 lines
308 B
PHP
22 lines
308 B
PHP
<?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');
|
|
}
|
|
|
|
}
|