Partial revert: way too many extensions rely on this being public. Make it public...
authorChad Horohoe <demon@users.mediawiki.org>
Mon, 20 Apr 2009 19:01:12 +0000 (19:01 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Mon, 20 Apr 2009 19:01:12 +0000 (19:01 +0000)
includes/Skin.php

index 093f6fb..096227e 100644 (file)
@@ -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(); }