From 52494e24c7c2d65dcb0f8a1db3201c8983908e36 Mon Sep 17 00:00:00 2001 From: Rotem Liss Date: Tue, 20 Jun 2006 09:38:48 +0000 Subject: [PATCH] Using the escaped UTF-8 characters instead of the hidden characters themselves, to prevent confusion. --- languages/Language.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages/Language.php b/languages/Language.php index 8af23ee31a..c615f8b522 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -861,7 +861,7 @@ class Language { * * @return string */ - function getDirMark() { return $this->isRTL() ? '‏' : '‎'; } + function getDirMark() { return $this->isRTL() ? "\xE2\x80\x8F" : "\xE2\x80\x8E"; } /** * To allow "foo[[bar]]" to extend the link over the whole word "foobar" -- 2.20.1