From 01da1d8621f2e41779a196c5dcf52b8ffd515da0 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Mon, 20 Apr 2009 19:01:12 +0000 Subject: [PATCH] Partial revert: way too many extensions rely on this being public. Make it public for now :\ --- includes/Skin.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(); } -- 2.20.1