Changeset 768950
- Timestamp:
- 09/09/2013 10:18:31 AM (13 years ago)
- Location:
- growmap-anti-spambot-plugin
- Files:
-
- 18 added
- 2 edited
-
tags/1.5.1 (added)
-
tags/1.5.1/commentluv-plus-logo.png (added)
-
tags/1.5.1/growmap-anti-spambot-plugin.php (added)
-
tags/1.5.1/index.html (added)
-
tags/1.5.1/index.php (added)
-
tags/1.5.1/languages (added)
-
tags/1.5.1/languages/ab_gasp-es_ES.mo (added)
-
tags/1.5.1/languages/ab_gasp-es_ES.po (added)
-
tags/1.5.1/languages/ab_gasp-fr_FR.mo (added)
-
tags/1.5.1/languages/ab_gasp-fr_FR.po (added)
-
tags/1.5.1/languages/ab_gasp.mo (added)
-
tags/1.5.1/languages/ab_gasp.po (added)
-
tags/1.5.1/languages/index.html (added)
-
tags/1.5.1/languages/index.php (added)
-
tags/1.5.1/readme.txt (added)
-
tags/1.5.1/screenshot-1.jpg (added)
-
tags/1.5.1/screenshot-2.jpg (added)
-
tags/1.5.1/screenshot-3.jpg (added)
-
trunk/growmap-anti-spambot-plugin.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
growmap-anti-spambot-plugin/trunk/growmap-anti-spambot-plugin.php
r768503 r768950 4 4 Plugin URI: http://www.growmap.com/growmap-anti-spambot-plugin/ 5 5 Description: Very simple plugin that adds a client side generated checkbox to the comment form requesting that the user clicks it to prove they are not a spammer. Bots wont see it so their spam comment will be discarded. 6 Version: 1.5 6 Version: 1.5.1 7 7 Author: Andy Bailey 8 8 Author URI: http://ComLuv.com … … 119 119 update_option('gasp_options',$options); 120 120 } 121 if(version_compare($options['version'],'1. 4.3','<')){121 if(version_compare($options['version'],'1.5.1','<')){ 122 122 $options['refer_check'] = 'yes'; 123 123 $options['max_mod'] = 3; … … 209 209 } 210 210 } 211 if( $options['max_mod'] != 'disabled'){211 if(isset($options['max_mod']) && $options['max_mod'] != 'disabled'){ 212 212 $count = get_comments(array('status'=>'hold','author_email'=>$commentdata['comment_author_email'],'count'=>true)); 213 213 if($count > $options['max_mod']){ … … 426 426 echo '<p id="gasp_p" style="clear:both;"></p>'; 427 427 echo '<script type="text/javascript"> 428 //v1. 4.3428 //v1.5.1 429 429 var gasp_p = document.getElementById("gasp_p"); 430 430 var gasp_cb = document.createElement("input"); -
growmap-anti-spambot-plugin/trunk/readme.txt
r768506 r768950 5 5 Requires at least: 2.9.2 6 6 Tested up to: 3.6 7 Stable tag: 1.5 7 Stable tag: 1.5.1 8 8 9 9 Defeat automated spambots (even the new 'learning' bots with dynamically named hidden fields) by adding a client side generated checkbox. … … 71 71 You can also change the secret key value and set the maximum comments in moderation to a lower number. 72 72 73 = everyone is getting the error message = 74 75 if you have a cache plugin, please clear all caches. 76 77 also, you can try saving the settings again to reset all the variables 78 73 79 == Screenshots == 74 80 … … 80 86 81 87 == ChangeLog == 88 89 = 1.5.1 = 90 91 * updated : set the max_mod value during install if it doesn't exist 92 * updated : new readme 82 93 83 94 = 1.5 = … … 145 156 == Upgrade Notice == 146 157 147 = 1.5 =158 = 1.5.1 = 148 159 149 * added - better measures for combatting the new 'learning' bots by using dynamically named hidden fields160 * fix - some users reporting that all comments were denied. this was due to a setting not being set on install. try saving your settings if this happens to you 150 161 151 162 == Configuration ==
Note: See TracChangeset
for help on using the changeset viewer.