From 2783d7df32892529244b706d71412963aa9a9342 Mon Sep 17 00:00:00 2001 From: Huji Lee Date: Sat, 26 Nov 2016 23:44:44 -0500 Subject: [PATCH] "Image size limit" text should always read left-to-right Bug: T144386 Change-Id: I10ab5ed71c114bbfefcc841d8a3d4b280bf1acf2 --- includes/Preferences.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/Preferences.php b/includes/Preferences.php index d40e0c1323..cf8e7b8088 100644 --- a/includes/Preferences.php +++ b/includes/Preferences.php @@ -1218,7 +1218,8 @@ class Preferences { $pixels = $context->msg( 'unit-pixel' )->text(); foreach ( $context->getConfig()->get( 'ImageLimits' ) as $index => $limits ) { - $display = "{$limits[0]}×{$limits[1]}" . $pixels; + // Note: A left-to-right marker (\u200e) is inserted, see T144386 + $display = "{$limits[0]}" . json_decode( '"\u200e"' ) . "×{$limits[1]}" . $pixels; $ret[$display] = $index; } -- 2.20.1