Skip to content

Commit 0f7835d

Browse files
committed
added missing dot in ValidationListener as follow-up to symfony#3922
1 parent ea2dd12 commit 0f7835d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Form/Extension/Core/EventListener/ValidationListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function validateForm(DataEvent $event)
4141
}
4242

4343
if (count($form->getExtraData()) > 0) {
44-
$form->addError(new FormError('This form should not contain extra fields'));
44+
$form->addError(new FormError('This form should not contain extra fields.'));
4545
}
4646

4747
if ($form->isRoot() && isset($_SERVER['CONTENT_LENGTH'])) {

0 commit comments

Comments
 (0)