From: Ævar Arnfjörð Bjarmason Date: Mon, 19 Dec 2005 01:02:29 +0000 (+0000) Subject: * (bug 1436) Accessors required for RawPage.php X-Git-Tag: 1.6.0~931 X-Git-Url: http://git.cyclocoop.org/geomaker.php?a=commitdiff_plain;h=2a859fdc21e96d3857552dc908471dce4a45718c;p=lhc%2Fweb%2Fwiklou.git * (bug 1436) Accessors required for RawPage.php --- diff --git a/includes/Parser.php b/includes/Parser.php index 55d7c3cb6f..af65ddb45f 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -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 ); } } /**