From: Chad Horohoe Date: Mon, 20 Apr 2009 19:01:12 +0000 (+0000) Subject: Partial revert: way too many extensions rely on this being public. Make it public... X-Git-Tag: 1.31.0-rc.0~42092 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=01da1d8621f2e41779a196c5dcf52b8ffd515da0;p=lhc%2Fweb%2Fwiklou.git Partial revert: way too many extensions rely on this being public. Make it public for now :\ --- diff --git a/includes/Skin.php b/includes/Skin.php index 093f6fbefa..096227efce 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -24,7 +24,8 @@ class Skin extends Linker { /**#@-*/ protected $mRevisionId; // The revision ID we're looking at, null if not applicable. protected $skinname = 'standard'; - protected $mTitle = null; + // @fixme Should be protected :-\ + var $mTitle = null; /** Constructor, call parent constructor */ function Skin() { parent::__construct(); }