From 8fefcc54b29fc023ef543b59bed05f0d5b35cd4b Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Mon, 12 Jan 2009 17:16:47 +0000 Subject: [PATCH] Bug 16991: Fix regression: Add class for right justify figures again. Class is defined in shared.css already. --- includes/specials/SpecialStatistics.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialStatistics.php b/includes/specials/SpecialStatistics.php index 414f7bee47..109c5c3025 100644 --- a/includes/specials/SpecialStatistics.php +++ b/includes/specials/SpecialStatistics.php @@ -108,7 +108,7 @@ class SpecialStatistics extends SpecialPage { } return Xml::openElement( 'tr', $trExtraParams ) . Xml::openElement( 'td' ) . $text . Xml::closeElement( 'td' ) . - Xml::openElement( 'td' ) . $number . Xml::closeElement( 'td' ) . + Xml::openElement( 'td', array( 'class' => 'mw-statistics-numbers' ) ) . $number . Xml::closeElement( 'td' ) . Xml::closeElement( 'tr' ); } -- 2.20.1