From 5b33f0fca1f2853d6dab8f52a4ef9c700ab189c1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Tue, 16 Feb 2016 15:02:03 +0100 Subject: [PATCH] Allow ­ in messages Bug: T127062 Change-Id: I8b89d8fd6f688a2fa60f3bd92e4cea6909ed267f --- includes/cache/MessageCache.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/includes/cache/MessageCache.php b/includes/cache/MessageCache.php index 97552a7bee..b058d1f818 100644 --- a/includes/cache/MessageCache.php +++ b/includes/cache/MessageCache.php @@ -790,11 +790,13 @@ class MessageCache { # Fix for NBSP, converted to space by firefox ' ', ' ', + '­' ], [ ' ', "\xc2\xa0", - "\xc2\xa0" + "\xc2\xa0", + "\xc2\xad" ], $message ); -- 2.20.1