Fixes for TitleCleanup subclasses:
authorTim Starling <tstarling@users.mediawiki.org>
Thu, 24 Sep 2009 04:19:25 +0000 (04:19 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Thu, 24 Sep 2009 04:19:25 +0000 (04:19 +0000)
commit77086dc2ef4cc909d18188a94b538677d42669ca
tree53932a6a394d5a6035d98bb601ef31c44b68adc0
parent87469c3e1df3195da78c86af35eb2b44178ad819
Fixes for TitleCleanup subclasses:

* (r56711) Don't use unbufferred queries unless someone is holding a gun to your head, they cause no end of trouble. Use batched queries instead. Should fix the bug reported on bug 20741 comment 13.
* Fixed a bug in cleanupTitles.php which caused it to fail to convert spaces in page_title to underscores, possibly caused by r6355.
* Made cleanupWatchlist.php respect "--fix" as documented
* Made runTable accept a parameter array instead of an ever-growing formal parameter list
* Renamed processPage() to more accurate processRow(). Removed abstract function definition since the name of the function can be overridden.
* Made a few things public instead of protected for easier testing via eval.php
* Fixed missing newlines in progress messages in cleanupCaps.php
maintenance/cleanupCaps.php
maintenance/cleanupImages.php
maintenance/cleanupTable.inc
maintenance/cleanupTitles.php
maintenance/cleanupWatchlist.php