Index: trunk/phase3/includes/specials/SpecialStatistics.php |
— | — | @@ -108,7 +108,7 @@ |
109 | 109 | } |
110 | 110 | return Xml::openElement( 'tr', $trExtraParams ) . |
111 | 111 | Xml::openElement( 'td' ) . $text . Xml::closeElement( 'td' ) . |
112 | | - Xml::openElement( 'td' ) . $number . Xml::closeElement( 'td' ) . |
| 112 | + Xml::openElement( 'td', array( 'class' => 'mw-statistics-numbers' ) ) . $number . Xml::closeElement( 'td' ) . |
113 | 113 | Xml::closeElement( 'tr' ); |
114 | 114 | } |
115 | 115 | |