From: Aaron Schulz Date: Sat, 20 Sep 2008 06:52:01 +0000 (+0000) Subject: Fix regression from r40636: footer is now parsed again X-Git-Tag: 1.31.0-rc.0~45203 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=468fc7e350565efbb45b2583dacccdeb496e496b;p=lhc%2Fweb%2Fwiklou.git Fix regression from r40636: footer is now parsed again --- diff --git a/includes/specials/SpecialStatistics.php b/includes/specials/SpecialStatistics.php index 2378039b69..6385a8d1a7 100644 --- a/includes/specials/SpecialStatistics.php +++ b/includes/specials/SpecialStatistics.php @@ -141,7 +141,7 @@ function wfSpecialStatistics( $par = '' ) { $text .= Xml::closeElement( 'table' ); # Customizable footer - $footer = wfMsgNoTrans( 'statistics-footer' ); + $footer = wfMsgExt( 'statistics-footer', array('parseinline') ); if( !wfEmptyMsg( 'statistics-footer', $footer ) && $footer != '' ) { $text .= "\n" . $footer; }