Contact Form 7 Honeypot - Version 1.6.2

Version Description

Small change to accommodate validation changes made in CF7 4.1.

Download this release

Release Info

Developer DaoByDesign
Plugin Icon 128x128 Contact Form 7 Honeypot
Version 1.6.2
Comparing to
See all releases

Code changes from version 1.6.1 to 1.6.2

Files changed (2) hide show
  1. honeypot.php +2 -2
  2. readme.txt +8 -2
honeypot.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.daobydesign.com/free-plugins/honeypot-module-for-contact-
5
  Description: Add honeypot anti-spam functionality to the popular Contact Form 7 plugin.
6
  Author: Dao By Design
7
  Author URI: http://www.daobydesign.com
8
- Version: 1.6.1
9
  */
10
 
11
  /* Copyright 2014 Dao By Design (email : info@daobydesign.com)
@@ -94,7 +94,7 @@ function wpcf7_honeypot_filter ( $result, $tag ) {
94
 
95
  if ( $value != '' ) {
96
  $result['valid'] = false;
97
- $result['reason'][$name] = wpcf7_get_message( 'spam' );
98
  }
99
 
100
  return $result;
5
  Description: Add honeypot anti-spam functionality to the popular Contact Form 7 plugin.
6
  Author: Dao By Design
7
  Author URI: http://www.daobydesign.com
8
+ Version: 1.6.2
9
  */
10
 
11
  /* Copyright 2014 Dao By Design (email : info@daobydesign.com)
94
 
95
  if ( $value != '' ) {
96
  $result['valid'] = false;
97
+ $result['reason'] = array( $name => wpcf7_get_message( 'spam' ) );
98
  }
99
 
100
  return $result;
readme.txt CHANGED
@@ -1,8 +1,8 @@
1
  === Contact Form 7 Honeypot ===
2
  Tags: honeypot, antispam, captcha, spam, form, forms, contact form 7, contactform7, contact form, cf7, cforms, Contact Forms 7, Contact Forms, contacts
3
  Requires at least: 3.5
4
- Tested up to: 4.0
5
- Stable tag: 1.6.1
6
  Contributors: DaoByDesign
7
  Donate link: http://www.daobydesign.com/buy-us-a-coffee/
8
  License: GPLv2 or later
@@ -62,6 +62,9 @@ add_filter('wpcf7_honeypot_html_output', 'my_honeypot_override', 10, 2 ); ?>`
62
  * Yep! New in version 1.5 of the plugin you're able to adjust the HTML by hooking the output filter for the plugin. See the **Installation** section for more details.
63
 
64
  == Changelog ==
 
 
 
65
  = 1.6.1 =
66
  Small change to accommodate changes made in CF7 3.9.
67
 
@@ -87,6 +90,9 @@ Small update for W3C compliance. Thanks <a href="http://wordpress.org/support/to
87
  * Initial release.
88
 
89
  == Upgrade Notice ==
 
 
 
90
  = 1.6.1 =
91
  Must update if running CF7 3.9 or above. Update also compatible with CF7 3.6 and above. If using less than CF7 3.6, use the v1.3 of this plugin.
92
 
1
  === Contact Form 7 Honeypot ===
2
  Tags: honeypot, antispam, captcha, spam, form, forms, contact form 7, contactform7, contact form, cf7, cforms, Contact Forms 7, Contact Forms, contacts
3
  Requires at least: 3.5
4
+ Tested up to: 4.1
5
+ Stable tag: 1.6.2
6
  Contributors: DaoByDesign
7
  Donate link: http://www.daobydesign.com/buy-us-a-coffee/
8
  License: GPLv2 or later
62
  * Yep! New in version 1.5 of the plugin you're able to adjust the HTML by hooking the output filter for the plugin. See the **Installation** section for more details.
63
 
64
  == Changelog ==
65
+ = 1.6.2 =
66
+ Small change to accommodate validation changes made in CF7 4.1.
67
+
68
  = 1.6.1 =
69
  Small change to accommodate changes made in CF7 3.9.
70
 
90
  * Initial release.
91
 
92
  == Upgrade Notice ==
93
+ = 1.6.2 =
94
+ Must update if running CF7 4.1 or above. Update also compatible with CF7 3.6 and above. If using less than CF7 3.6, use the v1.3 of this plugin.
95
+
96
  = 1.6.1 =
97
  Must update if running CF7 3.9 or above. Update also compatible with CF7 3.6 and above. If using less than CF7 3.6, use the v1.3 of this plugin.
98