* (bug 1436) Accessors required for RawPage.php
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Mon, 19 Dec 2005 01:02:29 +0000 (01:02 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Mon, 19 Dec 2005 01:02:29 +0000 (01:02 +0000)
includes/Parser.php

index 55d7c3c..af65ddb 100644 (file)
@@ -3625,6 +3625,10 @@ class Parser
                $text = $this->unstripNoWiki( $text, $this->mStripState );
                return $text;
        }
+
+       function Title( $x = NULL ) { return wfSetVar( $this->mTitle, $x ); }
+       function Options( $x = NULL ) { return wfSetVar( $this->mOptions, $x ); }
+       function OutputType( $x = NULL ) { return wfSetVar( $this->mOutputType, $x ); }
 }
 
 /**