From e195fc5b48dce003dfdf95377a75623f0992e0dc Mon Sep 17 00:00:00 2001 From: Rob Church Date: Sun, 23 Apr 2006 03:19:10 +0000 Subject: [PATCH] Parse unusedtemplatestext when passed as page header --- includes/SpecialUnusedtemplates.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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' ) ); } } -- 2.20.1