From: Rotem Liss Date: Tue, 20 Jun 2006 09:38:48 +0000 (+0000) Subject: Using the escaped UTF-8 characters instead of the hidden characters themselves, to... X-Git-Tag: 1.31.0-rc.0~56731 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=52494e24c7c2d65dcb0f8a1db3201c8983908e36;p=lhc%2Fweb%2Fwiklou.git Using the escaped UTF-8 characters instead of the hidden characters themselves, to prevent confusion. --- 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"