Update CaptchaType.php

Checkout version
This commit is contained in:
Max Kovpak 2015-08-26 11:26:01 +03:00
parent 3cc4b072c3
commit 87d38d98a4
1 changed files with 2 additions and 2 deletions

View File

@ -70,8 +70,8 @@ class CaptchaType extends AbstractType
$options['bypass_code'],
$options['humanity']
);
$builder->addEventListener(FormEvents::POST_SUBMIT, array($validator, 'validate'));
$event = \Symfony\Component\HttpKernel\Kernel::VERSION >= 2.3 ? FormEvents::POST_SUBMIT : FormEvents::POST_BIND;
$builder->addEventListener($event, array($validator, 'validate'));
}
/**