]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blobdiff - maintenance/deleteOrphanedRevisions.inc.php
MediaWiki 1.16.0
[autoinstallsdev/mediawiki.git] / maintenance / deleteOrphanedRevisions.inc.php
diff --git a/maintenance/deleteOrphanedRevisions.inc.php b/maintenance/deleteOrphanedRevisions.inc.php
deleted file mode 100644 (file)
index 6678d5b..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-
-/**
- * Support functions for the deleteOrphanedRevisions maintenance script
- *
- * @file
- * @ingroup Maintenance
- * @author Rob Church <robchur@gmail.com>
- */
-
-/**
- * Delete one or more revisions from the database
- * Do this inside a transaction
- *
- * @param $id Array of revision id values
- * @param $db Database class (needs to be a master)
- */
-function deleteRevisions( $id, &$dbw ) {
-       if( !is_array( $id ) )
-               $id = array( $id );
-       $dbw->delete( 'revision', array( 'rev_id' => $id ), 'deleteRevision' );
-}
-
-/**
- * Spit out script usage information and exit
- */
-function showUsage() {
-       echo( "Finds revisions which refer to nonexisting pages and deletes them from the database\n" );
-       echo( "USAGE: php deleteOrphanedRevisions.php [--report]\n\n" );
-       echo( " --report : Prints out a count of affected revisions but doesn't delete them\n\n" );
-}
-