8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a233bc commit bca68caCopy full SHA for bca68ca
src/Symfony/Component/Form/Extension/Csrf/EventListener/CsrfValidationListener.php
@@ -65,7 +65,7 @@ public function preBind(FormEvent $event)
65
66
if ($form->isRoot() && $form->getConfig()->getOption('compound')) {
67
if (!isset($data[$this->fieldName]) || !$this->csrfProvider->isCsrfTokenValid($this->intention, $data[$this->fieldName])) {
68
- $form->addError(new FormError('The CSRF token is invalid. Please try to resubmit the form'));
+ $form->addError(new FormError('The CSRF token is invalid. Please try to resubmit the form.'));
69
}
70
71
unset($data[$this->fieldName]);
0 commit comments