From: Raphaƫl Gertz Date: Mon, 8 Jan 2024 11:11:36 +0000 (+0100) Subject: Cleanup flash messages X-Git-Tag: 0.3.5 X-Git-Url: https://git.rapsys.eu/userbundle/commitdiff_plain/11e16d3358df95771bd7600e7f0176afcdf474f7 Cleanup flash messages --- diff --git a/Handler/AuthenticationFailureHandler.php b/Handler/AuthenticationFailureHandler.php index d1c2a34..4cbd0c6 100644 --- a/Handler/AuthenticationFailureHandler.php +++ b/Handler/AuthenticationFailureHandler.php @@ -233,7 +233,7 @@ class AuthenticationFailureHandler extends DefaultAuthenticationFailureHandler { //With not enabled user } elseif ($parent instanceof DisabledException) { //Add error message account is not enabled - $this->addFlash('error', $this->translator->trans('Your account is not enabled')); + $this->addFlash('error', $this->translator->trans('Account not enabled')); //Redirect on the same route with sent=1 to cleanup form return new RedirectResponse($this->router->generate($request->get('_route'), $request->get('_route_params')), 302); @@ -335,10 +335,10 @@ class AuthenticationFailureHandler extends DefaultAuthenticationFailureHandler { } //Add notice - $this->addFlash('notice', $this->translator->trans('Your verification mail has been sent, to activate your account you must follow the confirmation link inside')); + $this->addFlash('notice', $this->translator->trans('Your verification mail has been sent, to activate your account follow the confirmation link inside')); //Add junk warning - $this->addFlash('warning', $this->translator->trans('If you did not receive a verification mail, check your Spam or Junk mail folders')); + $this->addFlash('warning', $this->translator->trans('If you did not receive a verification mail, check your Spam or Junk mail folder')); //Redirect on the same route with sent=1 to cleanup form return new RedirectResponse($this->router->generate($request->get('_route'), $request->get('_route_params')), 302);