Fix spaces to tabs from r77393
authorSam Reed <reedy@users.mediawiki.org>
Mon, 29 Nov 2010 00:28:04 +0000 (00:28 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Mon, 29 Nov 2010 00:28:04 +0000 (00:28 +0000)
maintenance/reassignEdits.php

index b2f1fe5..16f9e3f 100644 (file)
@@ -102,16 +102,16 @@ class ReassignEdits extends Maintenance {
                                # Reassign edits
                                $this->output( "\nReassigning current edits..." );
                                $dbw->update( 'revision', $this->userSpecification( $to, 'rev_user', 'rev_user_text' ),
-                                     $this->userConditions( $from, 'rev_user', 'rev_user_text' ), __METHOD__ );
+                                       $this->userConditions( $from, 'rev_user', 'rev_user_text' ), __METHOD__ );
                                $this->output( "done.\nReassigning deleted edits..." );
                                $dbw->update( 'archive', $this->userSpecification( $to, 'ar_user', 'ar_user_text' ),
-                              $this->userConditions( $from, 'ar_user', 'ar_user_text' ), __METHOD__ );
+                                       $this->userConditions( $from, 'ar_user', 'ar_user_text' ), __METHOD__ );
                                $this->output( "done.\n" );
                                # Update recent changes if required
                                if ( $rc ) {
                                        $this->output( "Updating recent changes..." );
                                        $dbw->update( 'recentchanges', $this->userSpecification( $to, 'rc_user', 'rc_user_text' ),
-                                  $this->userConditions( $from, 'rc_user', 'rc_user_text' ), __METHOD__ );
+                                               $this->userConditions( $from, 'rc_user', 'rc_user_text' ), __METHOD__ );
                                        $this->output( "done.\n" );
                                }
                        }