From: Rob Church Date: Fri, 28 Apr 2006 18:19:18 +0000 (+0000) Subject: Remove unneeded extra whitespace at top of Special:Categories X-Git-Tag: 1.31.0-rc.0~57350 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/categories/modifier.php?a=commitdiff_plain;h=0cd9da4a37fbdd5fedfa417d53f0fec908e3207a;p=lhc%2Fweb%2Fwiklou.git Remove unneeded extra whitespace at top of Special:Categories --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index fb711c4fa7..abe675ddda 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -132,6 +132,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 5005): Fix XHTML output. * (bug 5315) "Expires: -1" HTTP header made strictly valid (using 1970 date). * (bug 4825): note in DefaultSettings.php about 'profiling' table creation +* Remove unneeded extra whitespace at top of Special:Categories == Compatibility == diff --git a/includes/SpecialCategories.php b/includes/SpecialCategories.php index 32ec179641..ccfd369e6b 100644 --- a/includes/SpecialCategories.php +++ b/includes/SpecialCategories.php @@ -28,8 +28,9 @@ class CategoriesPage extends QueryPage { function isSyndicated() { return false; } function getPageHeader() { - return wfMsgWikiHtml('categoriespagetext') . "
\n"; + return wfMsgWikiHtml( 'categoriespagetext' ); } + function getSQL() { $NScat = NS_CATEGORY; $dbr =& wfGetDB( DB_SLAVE );