diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2012-05-03 13:01:35 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2012-05-03 13:01:35 +0200 |
commit | d9022f63880ce039446fba8364f68e656b7bf4cb (patch) | |
tree | 16b40fbf17bf7c9ee6f4ead25b16dd192378050a /maintenance/moveBatch.php | |
parent | 27cf83d177256813e2e802241085fce5dd0f3fb9 (diff) |
Update to MediaWiki 1.19.0
Diffstat (limited to 'maintenance/moveBatch.php')
-rw-r--r-- | maintenance/moveBatch.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/maintenance/moveBatch.php b/maintenance/moveBatch.php index 9b9f9105..6ecc775e 100644 --- a/maintenance/moveBatch.php +++ b/maintenance/moveBatch.php @@ -67,6 +67,9 @@ class MoveBatch extends Maintenance { $this->error( "Unable to read file, exiting", true ); } $wgUser = User::newFromName( $user ); + if ( !$wgUser ) { + $this->error( "Invalid username", true ); + } # Setup complete, now start $dbw = wfGetDB( DB_MASTER ); |