From: Sam Reed Date: Mon, 29 Nov 2010 00:28:04 +0000 (+0000) Subject: Fix spaces to tabs from r77393 X-Git-Tag: 1.31.0-rc.0~33694 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=facb81dff10ef6b52b6560501be3d81e803a05bd;p=lhc%2Fweb%2Fwiklou.git Fix spaces to tabs from r77393 --- diff --git a/maintenance/reassignEdits.php b/maintenance/reassignEdits.php index b2f1fe5c48..16f9e3fa86 100644 --- a/maintenance/reassignEdits.php +++ b/maintenance/reassignEdits.php @@ -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" ); } }