PDA


View Full Version : tag search as guest using reCAPTCHA


simsnet
06-07-2008, 05:45 AM
When viewing a showlink page and trying to click on one of the search tags listed for the link i get an error.

"The string you entered for the image verification did not match what was displayed."

This only happens to guests and probably something to do with recaptcha.

(it dosent show any image)

Brian
06-09-2008, 05:29 PM
Thank you for pointing this out. I've just applied a fix to the links/search.php file in the download package here so that tag searches do not require re-/captcha verification. If you will download the files from here again and upload the links/search.php file over your existing one, that should take care of the issue.
Or if you would rather apply the fix manually, just look in the file for this code:
// Image verification
links_check_human_verify('search');


And replace with this:
// Image verification
if (!$tag)
{
links_check_human_verify('search');
}