From: Tim Starling Date: Fri, 16 Mar 2007 13:04:57 +0000 (+0000) Subject: Removed //IGNORE suffix in call to Language::iconv, redundant (generates warning... X-Git-Tag: 1.31.0-rc.0~53695 X-Git-Url: http://git.cyclocoop.org/data/Luca_Pacioli_%28Gemaelde%29.jpeg?a=commitdiff_plain;h=4e3199f0306eb42580843812d40883dca0474de2;p=lhc%2Fweb%2Fwiklou.git Removed //IGNORE suffix in call to Language::iconv, redundant (generates warning) since r19835. --- diff --git a/includes/Revision.php b/includes/Revision.php index 7223fcc6dc..86b96347be 100644 --- a/includes/Revision.php +++ b/includes/Revision.php @@ -611,7 +611,7 @@ class Revision { # Old revisions kept around in a legacy encoding? # Upconvert on demand. global $wgInputEncoding, $wgContLang; - $text = $wgContLang->iconv( $wgLegacyEncoding, $wgInputEncoding . '//IGNORE', $text ); + $text = $wgContLang->iconv( $wgLegacyEncoding, $wgInputEncoding, $text ); } } wfProfileOut( $fname );