From 0f7835dc361c0a1f026ddf6677f19d2744650e00 Mon Sep 17 00:00:00 2001 From: Christian Raue Date: Sat, 19 May 2012 15:30:12 +0200 Subject: [PATCH] added missing dot in ValidationListener as follow-up to #3922 --- .../Form/Extension/Core/EventListener/ValidationListener.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Form/Extension/Core/EventListener/ValidationListener.php b/src/Symfony/Component/Form/Extension/Core/EventListener/ValidationListener.php index a10959ced4..389328cfbf 100644 --- a/src/Symfony/Component/Form/Extension/Core/EventListener/ValidationListener.php +++ b/src/Symfony/Component/Form/Extension/Core/EventListener/ValidationListener.php @@ -41,7 +41,7 @@ class ValidationListener implements EventSubscriberInterface } if (count($form->getExtraData()) > 0) { - $form->addError(new FormError('This form should not contain extra fields')); + $form->addError(new FormError('This form should not contain extra fields.')); } if ($form->isRoot() && isset($_SERVER['CONTENT_LENGTH'])) {