From 75521b25624b92ad48b46d734a097f6a66283a8f Mon Sep 17 00:00:00 2001 From: Rotem Liss Date: Mon, 19 Jun 2006 19:32:53 +0000 Subject: [PATCH] Fixing the most annoying problem in Bug 5724: adding dir mark after the recent changes page name, to prevent confusion in BiDi languages --- includes/ChangesList.php | 2 ++ 1 file changed, 2 insertions(+) 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; } -- 2.20.1