From 406abe0b0a02e103082fc357b9b1efda9e9aaa98 Mon Sep 17 00:00:00 2001 From: Magnus Manske Date: Fri, 6 Aug 2004 17:52:43 +0000 Subject: [PATCH] Adding option $fixLbug to fix bug 948549 --- includes/Parser.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/Parser.php b/includes/Parser.php index 86d963289e..37d0a93cb1 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -822,6 +822,9 @@ class Parser $fname = 'Parser::internalParse'; wfProfileIn( $fname ); + global $fixLbug ; + if ( $fixLbug ) $text = preg_replace ( '/(l|L)\'/' , '\\1'' , $text ) ; + $text = $this->removeHTMLtags( $text ); $text = $this->replaceVariables( $text, $args ); -- 2.20.1