I had a user complaining about a 503 error when he was trying to post to the forum. He had 'post with no antispam checking' permissions, so I didn't think anything of it, but the spambot validation functions don't appear to check for that.

This was easy to fix. In both validate function, I changed:

if (form_get_errors()) {

to

if (form_get_errors() || user_access('post with no antispam checking')) {

...and the user can now post successfully.

Comments

avpaderno’s picture

Version: 6.x-1.3 » 6.x-1.x-dev
Issue summary: View changes
Status: Active » Closed (outdated)

I am closing this issue, since Drupal 4.x, 5.x, and 6.x are now not supported.