Version Description
(2020-06-15) = * Rearranged the plugin method calls so that inclusion of files is last.
Download this release
Release Info
Developer | IQComputing |
Plugin | Contact Form 7 – reCaptcha v2 |
Version | 1.2.7 |
Comparing to | |
See all releases |
Code changes from version 1.2.6 to 1.2.7
- changelog.txt +7 -0
- readme.txt +6 -7
- wpcf7-recaptcha.php +3 -3
changelog.txt
CHANGED
@@ -2,6 +2,13 @@
|
|
2 |
|
3 |
This is to keep track of all changes the plugin undertakes. The readme.txt should only contain the most recent 3.
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
= 1.2.6 =
|
6 |
|
7 |
Release Date: April 22, 2020
|
2 |
|
3 |
This is to keep track of all changes the plugin undertakes. The readme.txt should only contain the most recent 3.
|
4 |
|
5 |
+
= 1.2.7 =
|
6 |
+
|
7 |
+
Release Date: June 15, 2020
|
8 |
+
|
9 |
+
* Overview
|
10 |
+
* Rearranged the plugin deity method calls so that inclusion of files is last.
|
11 |
+
|
12 |
= 1.2.6 =
|
13 |
|
14 |
Release Date: April 22, 2020
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: iqcomputing
|
|
3 |
Tags: contact-form-7, contact-form-7-recaptcha, recaptcha, spam
|
4 |
Requires at least: 4.9
|
5 |
Tested up to: 5.4
|
6 |
-
Stable tag: 1.2.
|
7 |
License: GPLv2 or later
|
8 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -60,12 +60,11 @@ Should the above be correct, at this point it's time to open a support thread fo
|
|
60 |
|
61 |
== Changelog ==
|
62 |
|
|
|
|
|
|
|
63 |
= 1.2.6 (2020-04-22) =
|
64 |
-
* Updated reCpatcha Javascript to use the passed event to find the given form.
|
65 |
|
66 |
= 1.2.5 (2020-04-20) =
|
67 |
-
* Updated WordPress Version to denote support for 5.4+
|
68 |
-
|
69 |
-
= 1.2.4 (2019-12-23) =
|
70 |
-
* Added extra failsafe should CF7 reCaptcha not be removed.
|
71 |
-
* Added PHP constant checks against the Contact Form 7 consts. Future proofing.
|
3 |
Tags: contact-form-7, contact-form-7-recaptcha, recaptcha, spam
|
4 |
Requires at least: 4.9
|
5 |
Tested up to: 5.4
|
6 |
+
Stable tag: 1.2.7
|
7 |
License: GPLv2 or later
|
8 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
60 |
|
61 |
== Changelog ==
|
62 |
|
63 |
+
= 1.2.7 (2020-06-15) =
|
64 |
+
* Rearranged the plugin method calls so that inclusion of files is last.
|
65 |
+
|
66 |
= 1.2.6 (2020-04-22) =
|
67 |
+
* Updated reCpatcha Javascript to use the passed event to find the given form.
|
68 |
|
69 |
= 1.2.5 (2020-04-20) =
|
70 |
+
* Updated WordPress Version to denote support for 5.4+
|
|
|
|
|
|
|
|
wpcf7-recaptcha.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Plugin Name: ReCaptcha v2 for Contact Form 7
|
4 |
* Description: ReCaptcha v2 Fix for Contact Form 7 5.1 and later.
|
5 |
-
* Version: 1.2.
|
6 |
* Author: IQComputing
|
7 |
* Author URI: http://www.iqcomputing.com/
|
8 |
* License: GPL2
|
@@ -24,7 +24,7 @@ Class IQFix_WPCF7_Deity {
|
|
24 |
*
|
25 |
* @var String
|
26 |
*/
|
27 |
-
public static $version = '1.2.
|
28 |
|
29 |
|
30 |
/**
|
@@ -35,9 +35,9 @@ Class IQFix_WPCF7_Deity {
|
|
35 |
public static function register() {
|
36 |
|
37 |
$class = new self();
|
38 |
-
$class->include_files();
|
39 |
$class->action_hooks();
|
40 |
$class->filter_hooks();
|
|
|
41 |
|
42 |
}
|
43 |
|
2 |
/**
|
3 |
* Plugin Name: ReCaptcha v2 for Contact Form 7
|
4 |
* Description: ReCaptcha v2 Fix for Contact Form 7 5.1 and later.
|
5 |
+
* Version: 1.2.7
|
6 |
* Author: IQComputing
|
7 |
* Author URI: http://www.iqcomputing.com/
|
8 |
* License: GPL2
|
24 |
*
|
25 |
* @var String
|
26 |
*/
|
27 |
+
public static $version = '1.2.7';
|
28 |
|
29 |
|
30 |
/**
|
35 |
public static function register() {
|
36 |
|
37 |
$class = new self();
|
|
|
38 |
$class->action_hooks();
|
39 |
$class->filter_hooks();
|
40 |
+
$class->include_files();
|
41 |
|
42 |
}
|
43 |
|