Quote:
Originally Posted by ru55ian
|
It's a "Quick Reply for Guests for VB4 by BOP5" feature. To make it work with any captcha other than default/reCAPTCHA/SolveMedia you should add it's support to product .xml file.
For example, to add KeyCAPTCHA support you should modify "Quick Reply for Guests"'s xml in this way:
1. add
PHP Code:
if ($vbulletin->options['hv_type'] == "KeyCAPTCHA")
$cache[] = 'humanverify_keycaptcha';
after
PHP Code:
if ($vbulletin->options['hv_type'] == "SolveMedia")
$cache[] = 'humanverify_solvemedia';
2. replace
PHP Code:
if ($vbulletin->options['hv_type'] == "Recaptcha" OR $vbulletin->options['hv_type'] == "SolveMedia")
with
PHP Code:
if ($vbulletin->options['hv_type'] == "Recaptcha" OR $vbulletin->options['hv_type'] == "SolveMedia" OR $vbulletin->options['hv_type'] == "KeyCAPTCHA")
Best regards, KeyCAPTCHA Team