fix flash message

This commit is contained in:
Tykayn 2025-06-07 00:24:17 +02:00 committed by tykayn
parent 19cb2f6458
commit b9257d34fd

View file

@ -127,7 +127,7 @@ class PublicController extends AbstractController
{
$place = $this->entityManager->getRepository(Place::class)->findOneBy(['uuid_for_url' => $uuid]);
if (!$place) {
$this->addFlash('warning', 'Ce lien de modification n\'existe pas.'+$uuid);
$this->addFlash('warning', 'Ce lien de modification n\'existe pas.'.$uuid);
return $this->redirectToRoute('app_public_index');
}