added missing dot in ValidationListener as follow-up to #3922

This commit is contained in:
Christian Raue 2012-05-19 15:30:12 +02:00
parent ea2dd12a4f
commit 0f7835dc36

View File

@ -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'])) {