From 8657bf90c39dbdcc099dbdd4a9ca0dd72263a716 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 6 Oct 2009 18:54:47 +0000 Subject: [PATCH] Cleanup for r57288: use $wgContLang->alignEnd() instead of the isRtl() ? 'left' : 'right' dance --- includes/HistoryPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/HistoryPage.php b/includes/HistoryPage.php index b17688a675..0e448e8ec6 100644 --- a/includes/HistoryPage.php +++ b/includes/HistoryPage.php @@ -353,7 +353,7 @@ class HistoryPager extends ReverseChronologicalPager { $this->buttons = '
'; if( $wgUser->isAllowed('deletedhistory') ) { - $float = $wgContLang->isRTL() ? 'left' : 'right'; + $float = $wgContLang->alignEnd(); # Note bug #20966,