From d2fc621d5fc95064be9b8ee9825255f9095dfb39 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Thu, 28 Jul 2011 06:13:13 +0000 Subject: [PATCH] Fu r93249: I see no reason to mark this private - protected should be the default value, only use private if you have some reason to. Avoids most of the breakage in out of tree extensions. --- includes/SpecialPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index fbcd25e88e..ec257b9f79 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -31,7 +31,7 @@ class SpecialPage { // The canonical name of this special page // Also used for the default

heading, @see getDescription() - private $mName; + protected $mName; // The local name of this special page private $mLocalName; -- 2.20.1