From: Rotem Liss Date: Mon, 19 Jun 2006 19:32:53 +0000 (+0000) Subject: Fixing the most annoying problem in Bug 5724: adding dir mark after the recent change... X-Git-Tag: 1.31.0-rc.0~56738 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=75521b25624b92ad48b46d734a097f6a66283a8f;p=lhc%2Fweb%2Fwiklou.git Fixing the most annoying problem in Bug 5724: adding dir mark after the recent changes page name, to prevent confusion in BiDi languages --- diff --git a/includes/ChangesList.php b/includes/ChangesList.php index 95ac846a3c..84aadb3e93 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -170,6 +170,8 @@ class ChangesList { : ''; $articlelink = ' '. $this->skin->makeKnownLinkObj( $rc->getTitle(), '', $params ); if($watched) $articlelink = ''.$articlelink.''; + global $wgContLang; + $articlelink .= $wgContLang->getDirMark(); $s .= ' '.$articlelink; }