Problem/Motivation
Spambot is blocking IPv6 ip-address: on line 242 of the module file: if (filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) === FALSE) {
This should be:
if (filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) === FALSE && filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) === FALSE) {
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | 3317956-4.patch | 1.41 KB | immaculatexavier |
Issue fork spambot-3317956
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #3
immaculatexavier commentedAttached patch in accordance to the proposed resolution
Comment #4
immaculatexavier commentedIn #3 missed to attach patch
Attached patch in accordance to the proposed resolution
Comment #5
nickdickinsonwildeFixed in Drupal 8 and up.
Drupal 7 is unsupported for a while and no action on this ticket for quite some time