Changeset 911137
- Timestamp:
- 05/09/2014 03:27:30 PM (12 years ago)
- Location:
- avh-first-defense-against-spam/trunk
- Files:
-
- 4 edited
-
avh-fdas.php (modified) (1 diff)
-
class/avh-fdas.define.php (modified) (1 diff)
-
class/avh-fdas.spamcheck.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
avh-first-defense-against-spam/trunk/avh-fdas.php
r911122 r911137 4 4 * URI: http://blog.avirtualhome.com/wordpress-plugins 5 5 * Description: This plugin gives you the ability to block spammers before content is served. 6 * Version: 3.6. 76 * Version: 3.6.8 7 7 * Author: Peter van der Does 8 8 * Author URI: http://blog.avirtualhome.com/ -
avh-first-defense-against-spam/trunk/class/avh-fdas.define.php
r911122 r911137 9 9 * General Constants 10 10 */ 11 const PLUGIN_VERSION = '3.6. 7';11 const PLUGIN_VERSION = '3.6.8'; 12 12 13 13 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 280 280 $lookup = $reverse_ip . '.zen.spamhaus.org.'; 281 281 $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) { 283 283 $this->_spammer_detected = true; 284 284 $time_end = microtime(true); -
avh-first-defense-against-spam/trunk/readme.txt
r911122 r911137 5 5 Requires at least: 2.8 6 6 Tested up to: 3.9.1 7 Stable tag: 3.6. 77 Stable tag: 3.6.8 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 124 124 125 125 == Changelog == 126 = Version 3.6.8 = 127 * Drop the use of Spamhaus checking the CBL. 128 126 129 = Version 3.6.7 = 127 130 * Better check for supported MySQL version. (Props: doublesharp)
Note: See TracChangeset
for help on using the changeset viewer.