Changeset 781684
- Timestamp:
- 10/03/2013 07:45:34 AM (12 years ago)
- Location:
- growmap-anti-spambot-plugin
- Files:
-
- 18 added
- 2 edited
-
tags/1.5.3 (added)
-
tags/1.5.3/commentluv-plus-logo.png (added)
-
tags/1.5.3/growmap-anti-spambot-plugin.php (added)
-
tags/1.5.3/index.html (added)
-
tags/1.5.3/index.php (added)
-
tags/1.5.3/languages (added)
-
tags/1.5.3/languages/ab_gasp-es_ES.mo (added)
-
tags/1.5.3/languages/ab_gasp-es_ES.po (added)
-
tags/1.5.3/languages/ab_gasp-fr_FR.mo (added)
-
tags/1.5.3/languages/ab_gasp-fr_FR.po (added)
-
tags/1.5.3/languages/ab_gasp.mo (added)
-
tags/1.5.3/languages/ab_gasp.po (added)
-
tags/1.5.3/languages/index.html (added)
-
tags/1.5.3/languages/index.php (added)
-
tags/1.5.3/readme.txt (added)
-
tags/1.5.3/screenshot-1.jpg (added)
-
tags/1.5.3/screenshot-2.jpg (added)
-
tags/1.5.3/screenshot-3.jpg (added)
-
trunk/growmap-anti-spambot-plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
growmap-anti-spambot-plugin/trunk/growmap-anti-spambot-plugin.php
r769669 r781684 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. 26 Version: 1.5.3 7 7 Author: Andy Bailey 8 8 Author URI: http://ComLuv.com … … 220 220 if(isset($options['max_mod']) && $options['max_mod'] != 'disabled'){ 221 221 $count = get_comments(array('status'=>'hold','author_email'=>$commentdata['comment_author_email'],'count'=>true)); 222 if($count > $options['max_mod']){222 if($count && $count > $options['max_mod']){ 223 223 wp_die(__('You already have too many comments in moderation. Please wait until your existing comments have been approved before attempting to leave more comments','ab_gasp').$nocache_return.'<p>Error Code: mc'.$count.'mm0'.$options['max_mod']); 224 224 } -
growmap-anti-spambot-plugin/trunk/readme.txt
r769669 r781684 5 5 Requires at least: 2.9.2 6 6 Tested up to: 3.6 7 Stable tag: 1.5. 27 Stable tag: 1.5.3 8 8 9 9 Defeat automated spambots (even the new 'learning' bots with dynamically named hidden fields) by adding a client side generated checkbox. … … 88 88 89 89 == ChangeLog == 90 91 = 1.5.3 = 92 93 * updated : $count is checked if it has a value before checking if it is greater than max_mod to hopefully elimate the problem of random users being told they have too many comments in moderation 90 94 91 95 = 1.5.2 =
Note: See TracChangeset
for help on using the changeset viewer.