From c9ed2ff1a5d010f138d8062e7f30b27a10f279f6 Mon Sep 17 00:00:00 2001 From: Ilmari Karonen Date: Fri, 29 May 2009 16:32:10 +0000 Subject: [PATCH] Enable subpages in NS_MEDIAWIKI. This does not affect the message cache, which was already in effect using subpages for localized messages, but allows multi-page moves within (or into or out of) NS_MEDIAWIKI and provides convenient backlinks when viewing localized message pages. --- RELEASE-NOTES | 3 +++ includes/DefaultSettings.php | 1 + 2 files changed, 4 insertions(+) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 27023a2c28..8691a6c27a 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -35,6 +35,9 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 18958) $wgEnableVariants is a new boolean value to turn on or off the entire variant conversion engine, and the default is set to true. Former variable $wgDisableLangConversion was superseded by this variable. +* Subpages are now enabled in the MediaWiki namespace by default. This is + mainly a cosmetic change, and does not in any way affect the MessageCache, + which was already effectively treating the namespace as if it had subpages. === New features in 1.16 === diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index c3ca5167bf..26eea35bb2 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1973,6 +1973,7 @@ $wgNamespacesWithSubpages = array( NS_USER_TALK => true, NS_PROJECT_TALK => true, NS_FILE_TALK => true, + NS_MEDIAWIKI => true, NS_MEDIAWIKI_TALK => true, NS_TEMPLATE_TALK => true, NS_HELP_TALK => true, -- 2.20.1