Fix regression from r40636: footer is now parsed again
authorAaron Schulz <aaron@users.mediawiki.org>
Sat, 20 Sep 2008 06:52:01 +0000 (06:52 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Sat, 20 Sep 2008 06:52:01 +0000 (06:52 +0000)
includes/specials/SpecialStatistics.php

index 2378039..6385a8d 100644 (file)
@@ -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;
        }