genemu / GenemuFormBundle

Extra Form : Captcha GD, Tinymce, Recaptcha, JQueryDate, JQueryAutocomplete, JQuerySlider, JQueryFile, JQueryImage
586 stars 263 forks source link

Multiple captchas in the same page #295

Open tabernicola opened 11 years ago

tabernicola commented 11 years ago

If I put two captchas in the same page, the second captcha has thesame code and seems to be the same image twice. If there any way to use multiple captchas in the same page?

bamarni commented 11 years ago

Currently it's impossible, captcha code is registered in sessions under a static key, so if you have multiple captchas on a page it will grab the same code (cf. https://github.com/genemu/GenemuFormBundle/blob/master/Gd/Type/Captcha.php#L60).

It should be possible to implement though, maybe if captcha session key is prefixed with the field unique name.