Parse unusedtemplatestext when passed as page header

This commit is contained in:
Rob Church 2006-04-23 03:19:10 +00:00
parent 24717d2a06
commit e195fc5b48

View file

@ -47,7 +47,8 @@ class UnusedtemplatesPage extends QueryPage {
}
function getPageHeader() {
return wfMsgHtml( 'unusedtemplatestext' );
global $wgOut;
return $wgOut->parse( wfMsg( 'unusedtemplatestext' ) );
}
}