From 47f2ddfa4e0352a5e88233ce9a7913c78daec45a Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Fri, 9 Apr 2010 20:34:53 +0000 Subject: [PATCH] Follow-up r64819: PHP Notice: Undefined variable: wgDisableContentConversion in /www/w/includes/parser/Parser.php on line 379 --- includes/parser/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index 00467cdf03..a4669fcf19 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -303,7 +303,7 @@ class Parser { * to internalParse() which does all the real work. */ - global $wgUseTidy, $wgAlwaysUseTidy, $wgContLang, $wgDisableLangConversion, $wgUser, $wgRequest, $wgDisableTitleConversion; + global $wgUseTidy, $wgAlwaysUseTidy, $wgContLang, $wgDisableLangConversion, $wgUser, $wgRequest, $wgDisableTitleConversion, $wgDisableContentConversion; $fname = __METHOD__.'-' . wfGetCaller(); wfProfileIn( __METHOD__ ); wfProfileIn( $fname ); -- 2.20.1