From: Aaron Schulz Date: Thu, 24 Mar 2016 21:18:27 +0000 (-0700) Subject: Set doesWrites() for Special:Undelete X-Git-Tag: 1.31.0-rc.0~7513^2 X-Git-Url: http://git.cyclocoop.org/%22%2C%20generer_url_ecrire%28?a=commitdiff_plain;h=d036b80cf3cddf2e60eb09fe80abf11c66a0bb26;p=lhc%2Fweb%2Fwiklou.git Set doesWrites() for Special:Undelete Change-Id: Ie9044c9a57cb354a412ab515208b71ce44e52185 --- diff --git a/includes/specials/SpecialUndelete.php b/includes/specials/SpecialUndelete.php index 52a3d17c27..c6d3f6e75e 100644 --- a/includes/specials/SpecialUndelete.php +++ b/includes/specials/SpecialUndelete.php @@ -698,6 +698,10 @@ class SpecialUndelete extends SpecialPage { parent::__construct( 'Undelete', 'deletedhistory' ); } + public function doesWrites() { + return true; + } + function loadRequest( $par ) { $request = $this->getRequest(); $user = $this->getUser();