* (bug 24006) deleteArchivedRevisions.php maintenance script now longer throws a...
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 17 Jun 2010 09:13:32 +0000 (09:13 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 17 Jun 2010 09:13:32 +0000 (09:13 +0000)
RELEASE-NOTES
maintenance/Maintenance.php

index 7dfa759..1927bfe 100644 (file)
@@ -198,6 +198,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 23845) Special:ListFiles now uses correct file names without underscores
 * Ask for permanent login in Special:Preferences only if $wgCookieExpiration > 0
 * (bug 16356) Repair dumpInterwiki.inc to use proper normalization.
+* (bug 24006) deleteArchivedRevisions.php maintenance script now longer throws
+  a fatal error
 
 === API changes in 1.17 ===
 * (bug 22738) Allow filtering by action type on query=logevent.
index 3614adf..31d737c 100644 (file)
@@ -772,7 +772,7 @@ abstract class Maintenance {
         * @param $delete Boolean: whether or not to actually delete the records
         * @author Rob Church <robchur@gmail.com>
         */
-       protected function purgeRedundantText( $delete = true ) {
+       public function purgeRedundantText( $delete = true ) {
                # Data should come off the master, wrapped in a transaction
                $dbw = wfGetDB( DB_MASTER );
                $dbw->begin();