phpBB3 importer: Fix import of anonymous users

This commit is contained in:
Gerhard Schlager 2017-02-05 15:26:50 +01:00
parent b79eef32e7
commit 14a0dff469
No known key found for this signature in database
GPG Key ID: 7DACA3C95B36014B
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ module ImportScripts::PhpBB3
{
id: username,
email: "anonymous_no_email_#{SecureRandom.hex}",
email: "anonymous_#{SecureRandom.hex}@no-email.invalid",
username: username,
name: @settings.username_as_name ? username : '',
created_at: Time.zone.at(row[:first_post_time]),