Quote:
Originally Posted by Doctor Dan
A quick mod if you want to restore the "image verification" frame around the reCAPTCHA panel, just like how vBulletin's standard CAPTCHA panel appears:
In the template register find:
and replace it with:
Code:
<fieldset class="fieldset">
<legend> $vbphrase[image_verification] </legend>
$imagereg
</fieldset>
You can also center the reCAPTCHA panel within the frame by adding a "<center>" tag:
Code:
<fieldset class="fieldset">
<legend> $vbphrase[image_verification] </legend>
<center> $imagereg </center>
</fieldset>
- Dan
|
I have patched my register.php file but cannot find the words $imagereg
Instead I have found this:
Code:
if ($vbulletin->options['regimagecheck'] AND $vbulletin->options['regimagetype'])
{
$imagereg = recaptcha_get_html($vbulletin->options['recaptcha_publickey'], $error);
}
else
{
$imagereg = '';
}