mirror of
https://github.com/flarum/core.git
synced 2025-08-08 09:26:34 +02:00
Rename dead is_activated references with the new is_email_confirmed (#1974)
This commit is contained in:
@@ -71,7 +71,7 @@ class SendConfirmationEmailController implements RequestHandlerInterface
|
||||
|
||||
$this->assertRegistered($actor);
|
||||
|
||||
if ($actor->id != $id || $actor->is_activated) {
|
||||
if ($actor->id != $id || $actor->is_email_confirmed) {
|
||||
throw new PermissionDeniedException;
|
||||
}
|
||||
|
||||
|
@@ -44,9 +44,7 @@ class ConfirmEmailHandler
|
||||
$user = $token->user;
|
||||
$user->changeEmail($token->email);
|
||||
|
||||
if (! $user->is_activated) {
|
||||
$user->activate();
|
||||
}
|
||||
$user->activate();
|
||||
|
||||
$user->save();
|
||||
$this->dispatchEventsFor($user);
|
||||
|
Reference in New Issue
Block a user