From: Rob Church Date: Sun, 23 Apr 2006 03:19:10 +0000 (+0000) Subject: Parse unusedtemplatestext when passed as page header X-Git-Tag: 1.31.0-rc.0~57397 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/pie.php?a=commitdiff_plain;h=e195fc5b48dce003dfdf95377a75623f0992e0dc;p=lhc%2Fweb%2Fwiklou.git Parse unusedtemplatestext when passed as page header --- diff --git a/includes/SpecialUnusedtemplates.php b/includes/SpecialUnusedtemplates.php index 0e990b0365..8782b8109f 100644 --- a/includes/SpecialUnusedtemplates.php +++ b/includes/SpecialUnusedtemplates.php @@ -47,7 +47,8 @@ class UnusedtemplatesPage extends QueryPage { } function getPageHeader() { - return wfMsgHtml( 'unusedtemplatestext' ); + global $wgOut; + return $wgOut->parse( wfMsg( 'unusedtemplatestext' ) ); } }