From 41c1c69fdf717925de5208da0a1bd0835bbecc3f Mon Sep 17 00:00:00 2001 From: Domas Mituzas Date: Mon, 26 Dec 2005 13:05:20 +0000 Subject: [PATCH] character set conversion //IGNORE live patch --- includes/Revision.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Revision.php b/includes/Revision.php index 03baf4b3c0..1a367f0b57 100644 --- a/includes/Revision.php +++ b/includes/Revision.php @@ -473,7 +473,7 @@ class Revision { # Old revisions kept around in a legacy encoding? # Upconvert on demand. global $wgInputEncoding, $wgContLang; - $text = $wgContLang->iconv( $wgLegacyEncoding, $wgInputEncoding, $text ); + $text = $wgContLang->iconv( $wgLegacyEncoding, $wgInputEncoding . '//IGNORE', $text ); } wfProfileOut( $fname ); return $text; -- 2.20.1