X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=maintenance%2FdeleteOldRevisions.php;h=aa11cd96d0f2220fbdf5a5c12350ad5bf36f24b5;hp=123163fb2b2286f1452c9cefde0da2568595d6fe;hb=1d7a1bf8bddf0908e4f572c82268733f63126a13;hpb=5d97e895562ec09d9233e199c21f5af7c6d58c9f diff --git a/maintenance/deleteOldRevisions.php b/maintenance/deleteOldRevisions.php index 123163fb2b..aa11cd96d0 100644 --- a/maintenance/deleteOldRevisions.php +++ b/maintenance/deleteOldRevisions.php @@ -42,14 +42,13 @@ class DeleteOldRevisions extends Maintenance { $this->doDelete( $this->hasOption( 'delete' ), $this->mArgs ); } - function doDelete( $delete = false, $args = array() ) { - + function doDelete( $delete = false, $args = [] ) { # Data should come off the master, wrapped in a transaction $dbw = $this->getDB( DB_MASTER ); $this->beginTransaction( $dbw, __METHOD__ ); - $pageConds = array(); - $revConds = array(); + $pageConds = []; + $revConds = []; # If a list of page_ids was provided, limit results to that set of page_ids if ( count( $args ) > 0 ) { @@ -61,7 +60,7 @@ class DeleteOldRevisions extends Maintenance { # Get "active" revisions from the page table $this->output( "Searching for active revisions..." ); $res = $dbw->select( 'page', 'page_latest', $pageConds, __METHOD__ ); - $latestRevs = array(); + $latestRevs = []; foreach ( $res as $row ) { $latestRevs[] = $row->page_latest; } @@ -73,7 +72,7 @@ class DeleteOldRevisions extends Maintenance { $revConds[] = 'rev_id NOT IN (' . $dbw->makeList( $latestRevs ) . ')'; } $res = $dbw->select( 'revision', 'rev_id', $revConds, __METHOD__ ); - $oldRevs = array(); + $oldRevs = []; foreach ( $res as $row ) { $oldRevs[] = $row->rev_id; } @@ -86,7 +85,8 @@ class DeleteOldRevisions extends Maintenance { # Delete as appropriate if ( $delete && $count ) { $this->output( "Deleting..." ); - $dbw->delete( 'revision', array( 'rev_id' => $oldRevs ), __METHOD__ ); + $dbw->delete( 'revision', [ 'rev_id' => $oldRevs ], __METHOD__ ); + $dbw->delete( 'ip_changes', [ 'ipc_rev_id' => $oldRevs ], __METHOD__ ); $this->output( "done.\n" ); }