From b5021ba9c863fe265f490f7066c3a2b486ac3d06 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Mon, 12 Sep 2005 20:28:24 +0000 Subject: [PATCH] Allow wikitext again --- includes/SpecialBrokenRedirects.php | 2 +- includes/SpecialCategories.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/SpecialBrokenRedirects.php b/includes/SpecialBrokenRedirects.php index 0720659140..604ad8408c 100644 --- a/includes/SpecialBrokenRedirects.php +++ b/includes/SpecialBrokenRedirects.php @@ -26,7 +26,7 @@ class BrokenRedirectsPage extends PageQueryPage { function isSyndicated() { return false; } function getPageHeader( ) { - return '

'.wfMsgHtml('brokenredirectstext')."


\n"; + return wfMsgWikiHtml('brokenredirectstext')."
\n"; } function getSQL() { diff --git a/includes/SpecialCategories.php b/includes/SpecialCategories.php index b5ca328fa8..3545195a4c 100644 --- a/includes/SpecialCategories.php +++ b/includes/SpecialCategories.php @@ -28,7 +28,7 @@ class CategoriesPage extends QueryPage { function isSyndicated() { return false; } function getPageHeader() { - return '

'.wfMsgHtml('categoriespagetext')."


\n"; + return wfMsgWikiHtml('categoriespagetext') . "
\n"; } function getSQL() { $NScat = NS_CATEGORY; -- 2.20.1