Index: trunk/extensions/Renameuser/SpecialRenameuser_body.php |
— | — | @@ -362,6 +362,11 @@ |
363 | 363 | array( 'user_name' => $this->old ), |
364 | 364 | __METHOD__ |
365 | 365 | ); |
| 366 | + // Update ipblock list name. |
| 367 | + $dbw->update( 'ipblocks', |
| 368 | + array( 'ipb_address' => $this->new ), |
| 369 | + array( 'ipb_user' => $this->uid, 'ipb_address' => $this->old ), |
| 370 | + __METHOD__ ); |
366 | 371 | |
367 | 372 | foreach( $this->tables as $table => $field ) { |
368 | 373 | $dbw->update( $table, |