From 04936828a13e4ee509668242d823a04a7722c0ad Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Fri, 23 May 2008 17:15:33 +0000 Subject: [PATCH] Reduce default max pages to move at once to 100, primarily to keep RC spam to sane levels until a more reasonable fix can be thought up. --- RELEASE-NOTES | 2 +- includes/DefaultSettings.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index c15849e339..5efe398601 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -46,7 +46,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * The "createpage" permission is no longer required when uploading if the target image page already exists. * $wgMaximumMovedPages restricts the number of pages that can be moved at once - (default 1000) with the new subpage-move functionality of Special:Movepage. + (default 100) with the new subpage-move functionality of Special:Movepage. === New features in 1.13 === diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 2aa35fa2cd..09b3e389f9 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -3190,7 +3190,7 @@ $wgExpensiveParserFunctionLimit = 100; /** * Maximum number of pages to move at once when moving subpages with a page. */ -$wgMaximumMovedPages = 1000; +$wgMaximumMovedPages = 100; /** * Array of namespaces to generate a sitemap for when the -- 2.20.1