From cb32fc167e4924be82d9b4dfdc14790426727db6 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 1 Dec 2005 08:24:49 +0000 Subject: [PATCH] fix typo in var name --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 84b27bfaa5..a0e77e4951 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -315,7 +315,7 @@ class OutputPage { function parse( $text, $linestart = true ) { global $wgParser, $wgTitle; $parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions, - $linestart, true, $this->mRevision ); + $linestart, true, $this->mRevisionId ); return $parserOutput->getText(); } -- 2.20.1