FU r98421: forgot to move mParserOptions field
authorAaron Schulz <aaron@users.mediawiki.org>
Thu, 29 Sep 2011 17:54:19 +0000 (17:54 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Thu, 29 Sep 2011 17:54:19 +0000 (17:54 +0000)
includes/Article.php
includes/WikiPage.php

index 95c476f..afcdbd7 100644 (file)
@@ -32,6 +32,12 @@ class Article extends Page {
         */
        protected $mPage;
 
+       /**
+        * @protected
+        * @var ParserOptions: ParserOptions object for $wgUser articles
+        */
+       public $mParserOptions;
+
        var $mContent;                    // !<
        var $mContentLoaded = false;      // !<
        var $mOldId;                      // !<
index 11658c0..1c86948 100644 (file)
@@ -33,12 +33,6 @@ class WikiPage extends Page {
        public $mTouched = '19700101000000'; // !< String
        /**@}}*/
 
-       /**
-        * @protected
-        * @var ParserOptions: ParserOptions object for $wgUser articles
-        */
-       public $mParserOptions;
-
        /**
         * Constructor and clear the article
         * @param $title Title Reference to a Title object.