r14833 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r14832‎ | r14833 | r14834 >
Date:09:38, 20 June 2006
Author:rotem
Status:old
Tags:
Comment:
Using the escaped UTF-8 characters instead of the hidden characters themselves, to prevent confusion.
Modified paths:
  • /trunk/phase3/languages/Language.php (modified) (history)

Diff [purge]

Index: trunk/phase3/languages/Language.php
@@ -861,7 +861,7 @@
862862 *
863863 * @return string
864864 */
865 - function getDirMark() { return $this->isRTL() ? '‏' : '‎'; }
 865+ function getDirMark() { return $this->isRTL() ? "\xE2\x80\x8F" : "\xE2\x80\x8E"; }
866866
867867 /**
868868 * To allow "foo[[bar]]" to extend the link over the whole word "foobar"

Status & tagging log