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

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]),