summaryrefslogtreecommitdiff
path: root/includes/SpecialDoubleRedirects.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/SpecialDoubleRedirects.php')
-rw-r--r--includes/SpecialDoubleRedirects.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/SpecialDoubleRedirects.php b/includes/SpecialDoubleRedirects.php
index fe480f60..fe42b00a 100644
--- a/includes/SpecialDoubleRedirects.php
+++ b/includes/SpecialDoubleRedirects.php
@@ -87,7 +87,7 @@ class DoubleRedirectsPage extends PageQueryPage {
$edit = $skin->makeBrokenLinkObj( $titleA, "(".wfMsg("qbedit").")" , 'redirect=no');
$linkB = $skin->makeKnownLinkObj( $titleB, '', 'redirect=no' );
$linkC = $skin->makeKnownLinkObj( $titleC );
- $arr = $wgContLang->isRTL() ? '←' : '→';
+ $arr = $wgContLang->getArrow() . $wgContLang->getDirMark();
return( "{$linkA} {$edit} {$arr} {$linkB} {$arr} {$linkC}" );
}