From 39157968edf9acf982327e45098b4565a691ac23 Mon Sep 17 00:00:00 2001 From: Thomas Date: Sun, 11 Aug 2019 11:51:32 +0200 Subject: [PATCH] Fix when submitting form --- src/Controller/FediPlanController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/FediPlanController.php b/src/Controller/FediPlanController.php index af022e5..a9683cf 100644 --- a/src/Controller/FediPlanController.php +++ b/src/Controller/FediPlanController.php @@ -192,7 +192,7 @@ class FediPlanController extends AbstractController 'Success', 'The message has been scheduled' ); - $form = $this->createForm(ComposeType::class, $compose); + $form = $this->createForm(ComposeType::class, $compose, ['user' => $this->getUser()]); } } $user = $this->getUser();