Whitespace fixup under tha maint directory.
[lhc/web/wiklou.git] / maintenance / deleteRevision.php
index 485cb86..24fdbe4 100644 (file)
 require_once( dirname( __FILE__ ) . '/Maintenance.php' );
 
 class DeleteRevision extends Maintenance {
-       
+
        public function __construct() {
                parent::__construct();
                $this->mDescription = "Delete one or more revisions by moving them to the archive table";
        }
-       
+
        public function execute() {
                if ( count( $this->mArgs ) == 0 ) {
                        $this->error( "No revisions specified", true );
@@ -37,7 +37,7 @@ class DeleteRevision extends Maintenance {
                $this->output( "Deleting revision(s) " . implode( ',', $this->mArgs ) .
                                                " from " . wfWikiID() . "...\n" );
                $dbw = wfGetDB( DB_MASTER );
-               
+
                $affected = 0;
                foreach ( $this->mArgs as $revID ) {
                        $dbw->insertSelect( 'archive', array( 'page', 'revision' ),