From: Rotem Liss Date: Thu, 20 Jul 2006 14:40:46 +0000 (+0000) Subject: Direction mark in Special:Listredirects, to prevent confusion. X-Git-Tag: 1.31.0-rc.0~56177 X-Git-Url: https://git.cyclocoop.org/%27.%24link.%27?a=commitdiff_plain;h=ad475d34654f01047ddf26b593c4377024e67118;p=lhc%2Fweb%2Fwiklou.git Direction mark in Special:Listredirects, to prevent confusion. --- diff --git a/includes/SpecialListredirects.php b/includes/SpecialListredirects.php index 3cbdedab3a..a7ae44f574 100644 --- a/includes/SpecialListredirects.php +++ b/includes/SpecialListredirects.php @@ -52,6 +52,7 @@ class ListredirectsPage extends QueryPage { # Check the language; RTL wikis need a ← $arr = $wgContLang->isRTL() ? ' ← ' : ' → '; + $arr .= $wgContLang->getDirMark(); # Format the whole thing and return it return( $rd_link . $arr . $targetLink );