From ae4243ce440ef8994603561b6819f5dd4ba8b940 Mon Sep 17 00:00:00 2001 From: Rob Church Date: Sun, 23 Apr 2006 20:56:56 +0000 Subject: [PATCH] Remove useless whitespace from Special:Brokenredirects header --- RELEASE-NOTES | 2 +- includes/SpecialBrokenRedirects.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 97c6a44972..110204257c 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -113,7 +113,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN which have since been created * (bug 5659) Change grammar hacks for Bosnian Wikimedia namespaces. This sort of special casing should be removed and fixed properly. - +* Remove useless whitespace from Special:Brokenredirects header == Compatibility == diff --git a/includes/SpecialBrokenRedirects.php b/includes/SpecialBrokenRedirects.php index 1c9be92621..72b4211711 100644 --- a/includes/SpecialBrokenRedirects.php +++ b/includes/SpecialBrokenRedirects.php @@ -26,7 +26,8 @@ class BrokenRedirectsPage extends PageQueryPage { function isSyndicated() { return false; } function getPageHeader( ) { - return wfMsgWikiHtml('brokenredirectstext')."
\n"; + global $wgOut; + return $wgOut->parse( wfMsg( 'brokenredirectstext' ) ); } function getSQL() { -- 2.20.1