r20523 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r20522‎ | r20523 | r20524 >
Date:13:04, 16 March 2007
Author:tstarling
Status:old
Tags:
Comment:
Removed //IGNORE suffix in call to Language::iconv, redundant (generates warning) since r19835.
Modified paths:
  • /trunk/phase3/includes/Revision.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/Revision.php
@@ -611,7 +611,7 @@
612612 # Old revisions kept around in a legacy encoding?
613613 # Upconvert on demand.
614614 global $wgInputEncoding, $wgContLang;
615 - $text = $wgContLang->iconv( $wgLegacyEncoding, $wgInputEncoding . '//IGNORE', $text );
 615+ $text = $wgContLang->iconv( $wgLegacyEncoding, $wgInputEncoding, $text );
616616 }
617617 }
618618 wfProfileOut( $fname );

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r19835Prevent some unnecessary lstat system calls, generated by include or require ...nickj05:36, 9 February 2007