Index: trunk/extensions/Renameuser/RenameUserJob.php |
— | — | @@ -30,8 +30,8 @@ |
31 | 31 | $timestampColumn = isset( $this->params['timestampColumn'] ) ? $this->params['timestampColumn'] : null; |
32 | 32 | $minTimestamp = $this->params['minTimestamp']; |
33 | 33 | $maxTimestamp = $this->params['maxTimestamp']; |
34 | | - $uniqueKey = isset( $this->params['keyId'] ) ? $this->params['keyId'] : null; |
35 | | - $keyId = $this->params['keyId']; |
| 34 | + $uniqueKey = isset( $this->params['uniqueKey'] ) ? $this->params['uniqueKey'] : null; |
| 35 | + $keyId = isset( $this->params['keyId'] ) ? $this->params['keyId'] : null; |
36 | 36 | $newname = $this->params['newname']; |
37 | 37 | $count = $this->params['count']; |
38 | 38 | |