From 468fc7e350565efbb45b2583dacccdeb496e496b Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sat, 20 Sep 2008 06:52:01 +0000 Subject: [PATCH] Fix regression from r40636: footer is now parsed again --- 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 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; } -- 2.20.1