Parse unusedtemplatestext when passed as page header
authorRob Church <robchurch@users.mediawiki.org>
Sun, 23 Apr 2006 03:19:10 +0000 (03:19 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Sun, 23 Apr 2006 03:19:10 +0000 (03:19 +0000)
includes/SpecialUnusedtemplates.php

index 0e990b0..8782b81 100644 (file)
@@ -47,7 +47,8 @@ class UnusedtemplatesPage extends QueryPage {
        }
 
        function getPageHeader() {
-               return wfMsgHtml( 'unusedtemplatestext' );
+               global $wgOut;
+               return $wgOut->parse( wfMsg( 'unusedtemplatestext' ) );
        }
 
 }