From 8e85d89e72b4f07e4a74ea8fd34698a0b317e560 Mon Sep 17 00:00:00 2001 From: Daniel Klabbers Date: Tue, 17 Apr 2018 14:27:52 +0200 Subject: [PATCH] is email confirmed boolean fixed --- framework/core/src/Install/Console/InstallCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Install/Console/InstallCommand.php b/framework/core/src/Install/Console/InstallCommand.php index f3137454e..fe1f733b6 100644 --- a/framework/core/src/Install/Console/InstallCommand.php +++ b/framework/core/src/Install/Console/InstallCommand.php @@ -349,7 +349,7 @@ class InstallCommand extends AbstractCommand $admin['password'] ); - $user->is_activated = 1; + $user->is_email_confirmed = 1; $user->save(); $user->groups()->sync([Group::ADMINISTRATOR_ID]);