diff --git a/core/modules/user/src/Controller/UserController.php b/core/modules/user/src/Controller/UserController.php index 21c81a2c755db7756643d5ee21efba523740aeda..8c9c7db251b73002bbdcfb91b92ab67e587396d8 100644 --- a/core/modules/user/src/Controller/UserController.php +++ b/core/modules/user/src/Controller/UserController.php @@ -103,7 +103,7 @@ public function resetPass($uid, $timestamp, $hash) { } else { // Invalid one-time link specifies an unknown user. - drupal_set_message($this->t('The one-time login link you clicked is invalid.')); + drupal_set_message($this->t('The one-time login link you clicked is invalid.'), 'error'); } return $this->redirect('<front>'); } @@ -209,7 +209,7 @@ public function confirmCancel(UserInterface $user, $timestamp = 0, $hashed_pass return batch_process(''); } else { - drupal_set_message(t('You have tried to use an account cancellation link that has expired. Please request a new one using the form below.')); + drupal_set_message(t('You have tried to use an account cancellation link that has expired. Please request a new one using the form below.'), 'error'); return $this->redirect('entity.user.cancel_form', ['user' => $user->id()], ['absolute' => TRUE]); } }