PageList.FillFromRecentChanges ignores limit parameter
Make robots for MediaWiki-powered sites!
Brought to you by:
code_driller
If you want to fill a PageList with the recent changes, it only gets filled with 50 pages, regardless of the given "limit" parameter. I think that's because of a missing ampersand.
In PageList.FillFromRecentChanges, the URL is
"{0}?title=Special:Recentchanges" + "&hideminor={1}&hidebots={2}&hideanons={3}&hideliu={4}&hidemyself={5}" + "&hideReviewed={6}limit={7}&days={8}"
but it should be
"{0}?title=Special:Recentchanges" + "&hideminor={1}&hidebots={2}&hideanons={3}&hideliu={4}&hidemyself={5}" + "&hideReviewed={6}&limit={7}&days={8}"
You're absolutely right. Thanks for reporting this.
Fixed in v3.14.