Plugin Directory

Changeset 911137


Ignore:
Timestamp:
05/09/2014 03:27:30 PM (12 years ago)
Author:
petervanderdoes
Message:

Release v3.6.8

Location:
avh-first-defense-against-spam/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • avh-first-defense-against-spam/trunk/avh-fdas.php

    r911122 r911137  
    44 * URI: http://blog.avirtualhome.com/wordpress-plugins
    55 * Description: This plugin gives you the ability to block spammers before content is served.
    6  * Version: 3.6.7
     6 * Version: 3.6.8
    77 * Author: Peter van der Does
    88 * Author URI: http://blog.avirtualhome.com/
  • avh-first-defense-against-spam/trunk/class/avh-fdas.define.php

    r911122 r911137  
    99     * General Constants
    1010     */
    11     const PLUGIN_VERSION = '3.6.7';
     11    const PLUGIN_VERSION = '3.6.8';
    1212
    1313    const PLUGIN_README_URL = 'http://svn.wp-plugins.org/avh-first-defense-against-spam/trunk/readme.txt';
  • avh-first-defense-against-spam/trunk/class/avh-fdas.spamcheck.php

    r842210 r911137  
    280280            $lookup = $reverse_ip . '.zen.spamhaus.org.';
    281281            $info = explode('.', gethostbyname($lookup));
    282             if ('127' == $info[0] && (int) $info[3] < 10) {
     282            if ('127' == $info[0] && (int) $info[3] < 10 && (int) $info[3] != 4) {
    283283                $this->_spammer_detected = true;
    284284                $time_end = microtime(true);
  • avh-first-defense-against-spam/trunk/readme.txt

    r911122 r911137  
    55Requires at least: 2.8
    66Tested up to: 3.9.1
    7 Stable tag: 3.6.7
     7Stable tag: 3.6.8
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl.html
     
    124124
    125125== Changelog ==
     126= Version 3.6.8 =
     127* Drop the use of Spamhaus checking the CBL.
     128
    126129= Version 3.6.7 =
    127130* Better check for supported MySQL version. (Props: doublesharp)
Note: See TracChangeset for help on using the changeset viewer.