Index: trunk/phase3/maintenance/reassignEdits.php |
— | — | @@ -102,16 +102,16 @@ |
103 | 103 | # Reassign edits |
104 | 104 | $this->output( "\nReassigning current edits..." ); |
105 | 105 | $dbw->update( 'revision', $this->userSpecification( $to, 'rev_user', 'rev_user_text' ), |
106 | | - $this->userConditions( $from, 'rev_user', 'rev_user_text' ), __METHOD__ ); |
| 106 | + $this->userConditions( $from, 'rev_user', 'rev_user_text' ), __METHOD__ ); |
107 | 107 | $this->output( "done.\nReassigning deleted edits..." ); |
108 | 108 | $dbw->update( 'archive', $this->userSpecification( $to, 'ar_user', 'ar_user_text' ), |
109 | | - $this->userConditions( $from, 'ar_user', 'ar_user_text' ), __METHOD__ ); |
| 109 | + $this->userConditions( $from, 'ar_user', 'ar_user_text' ), __METHOD__ ); |
110 | 110 | $this->output( "done.\n" ); |
111 | 111 | # Update recent changes if required |
112 | 112 | if ( $rc ) { |
113 | 113 | $this->output( "Updating recent changes..." ); |
114 | 114 | $dbw->update( 'recentchanges', $this->userSpecification( $to, 'rc_user', 'rc_user_text' ), |
115 | | - $this->userConditions( $from, 'rc_user', 'rc_user_text' ), __METHOD__ ); |
| 115 | + $this->userConditions( $from, 'rc_user', 'rc_user_text' ), __METHOD__ ); |
116 | 116 | $this->output( "done.\n" ); |
117 | 117 | } |
118 | 118 | } |