From: Happy-melon Date: Sat, 13 Mar 2010 20:49:34 +0000 (+0000) Subject: Fix encoding broken in r63707 X-Git-Tag: 1.31.0-rc.0~37458 X-Git-Url: http://git.cyclocoop.org/data/Fool?a=commitdiff_plain;h=958adc77aa7cbff4840513ee72e269cbc1f24d3f;p=lhc%2Fweb%2Fwiklou.git Fix encoding broken in r63707 --- diff --git a/includes/Preferences.php b/includes/Preferences.php index 6047df58b8..eb5e1f9e14 100644 --- a/includes/Preferences.php +++ b/includes/Preferences.php @@ -1126,7 +1126,7 @@ class Preferences { $ret = array(); foreach ( $wgImageLimits as $index => $limits ) { - $display = "{$limits[0]}×{$limits[1]}" . wfMsg( 'unit-pixel' ); + $display = "{$limits[0]}×{$limits[1]}" . wfMsg( 'unit-pixel' ); $ret[$display] = $index; }