We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8473b5d + b9deb3e commit 50681a4Copy full SHA for 50681a4
1 file changed
src/Controller/Helper/FormErrorsFlashHelper.php
@@ -42,7 +42,7 @@ public function addFlashErrors(FormInterface $form): void
42
$errors[] = $error->getMessage();
43
}
44
45
- $message = $this->translator->trans('bitbag_sylius_cms_plugin.ui.form_was_submitted_with_errors') . ' ' . rtrim(implode($errors, ' '));
+ $message = $this->translator->trans('bitbag_sylius_cms_plugin.ui.form_was_submitted_with_errors') . ' ' . rtrim(implode(' ', $errors));
46
47
$this->flashBag->set('error', $message);
48
0 commit comments