From 93a579447bb64531e89f9fa98aeef9232dc750b0 Mon Sep 17 00:00:00 2001 From: "Mark A. Hershberger" Date: Thu, 11 Nov 2010 19:47:12 +0000 Subject: [PATCH] followup r76526 As I said on IRC: : On my local wiki I saw that error once, but I thought what I committed fixed it because I'm not seeing it now. --- includes/specials/SpecialUploadStash.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/specials/SpecialUploadStash.php b/includes/specials/SpecialUploadStash.php index e085e6d964..983b846262 100644 --- a/includes/specials/SpecialUploadStash.php +++ b/includes/specials/SpecialUploadStash.php @@ -25,8 +25,8 @@ class SpecialUploadStash extends UnlistedSpecialPage { // $request is the request (usually wgRequest) // $subpage is everything in the URL after Special:UploadStash - public function __construct( $name, $restriction = '', $function = false, $file = 'default' ) { - parent::__construct( $name, 'upload' ); + public function __construct( ) { + parent::__construct( 'UploadStash', 'upload' ); try { $this->stash = new UploadStash( ); } catch (UploadStashNotAvailableException $e) { -- 2.20.1