From 958adc77aa7cbff4840513ee72e269cbc1f24d3f Mon Sep 17 00:00:00 2001 From: Happy-melon Date: Sat, 13 Mar 2010 20:49:34 +0000 Subject: [PATCH] Fix encoding broken in r63707 --- includes/Preferences.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.20.1