Index: trunk/phase3/includes/Parser.php |
— | — | @@ -3625,6 +3625,10 @@ |
3626 | 3626 | $text = $this->unstripNoWiki( $text, $this->mStripState ); |
3627 | 3627 | return $text; |
3628 | 3628 | } |
| 3629 | + |
| 3630 | + function Title( $x = NULL ) { return wfSetVar( $this->mTitle, $x ); } |
| 3631 | + function Options( $x = NULL ) { return wfSetVar( $this->mOptions, $x ); } |
| 3632 | + function OutputType( $x = NULL ) { return wfSetVar( $this->mOutputType, $x ); } |
3629 | 3633 | } |
3630 | 3634 | |
3631 | 3635 | /** |