From ec61db2425a8672d61792b170fc5d798641f760a Mon Sep 17 00:00:00 2001 From: Platonides Date: Fri, 9 Apr 2010 20:47:05 +0000 Subject: [PATCH] Follow up r64828. It was a typo, there's no variable called $wgDisableContentConversion --- includes/parser/Parser.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index 5843a02e24..8fd03961ed 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, $wgDisableTitleConversion, $wgUser, $wgRequest; $fname = __METHOD__.'-' . wfGetCaller(); wfProfileIn( __METHOD__ ); wfProfileIn( $fname ); @@ -363,7 +363,7 @@ class Parser { /** * A page get its title converted except: - * a) Content convert is globally disabled + * a) Language conversion is globally disabled * b) Title convert is globally disabled * c) The page is a redirect page * d) User request with a "linkconvert" set to "no" -- 2.20.1