From: Niklas Laxström Date: Thu, 28 Jul 2011 06:13:13 +0000 (+0000) Subject: Fu r93249: I see no reason to mark this private - protected should be the default... X-Git-Tag: 1.31.0-rc.0~28572 X-Git-Url: http://git.cyclocoop.org/%22.%28%24lien.?a=commitdiff_plain;h=d2fc621d5fc95064be9b8ee9825255f9095dfb39;p=lhc%2Fweb%2Fwiklou.git 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. --- 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;