From: Brion Vibber Date: Tue, 6 Oct 2009 18:54:47 +0000 (+0000) Subject: Cleanup for r57288: use $wgContLang->alignEnd() instead of the isRtl() ? 'left' ... X-Git-Tag: 1.31.0-rc.0~39369 X-Git-Url: http://git.cyclocoop.org//%27%40script%40/%27?a=commitdiff_plain;h=8657bf90c39dbdcc099dbdd4a9ca0dd72263a716;p=lhc%2Fweb%2Fwiklou.git Cleanup for r57288: use $wgContLang->alignEnd() instead of the isRtl() ? 'left' : 'right' dance --- 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,