From 2a859fdc21e96d3857552dc908471dce4a45718c Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Mon, 19 Dec 2005 01:02:29 +0000 Subject: [PATCH] * (bug 1436) Accessors required for RawPage.php --- includes/Parser.php | 4 ++++ 1 file changed, 4 insertions(+) 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 ); } } /** -- 2.20.1