simplethings/SimpleThingsFormExtraBundle

Recaptcha Seems to Interfere with RepeatedType Validation

Closed this issue · 1 comments

When I add in the RecaptchaType it then seems to interfere with the password's repeatedType on the same page. The error message appears only under the password saying, "Password does not meet strength requirements" which is a validator I wrote in the User Model. When I remove the RecaptchaType from the form, it works as it should.

Recaptcha is added as such:

<?php 
$builder->add('recaptcha', 'recaptcha', array(
    'widget_options' => array(
        'theme' => 'clean',
    ),
));

Sorry, Recaptcha seems to have nothing to do with it. It used to give me some issues by suddenly refusing to validate, but this is not related to this bug report.