Version Description
Download this release
Release Info
Developer | Yuichiro ABE |
Plugin | Contact Form 7 add confirm |
Version | 4.1.3 |
Comparing to | |
See all releases |
Code changes from version 4.1.2 to 4.1.3
- contact-form-7-confirm.php +2 -2
- includes/controller.php +7 -0
- readme.txt +7 -4
contact-form-7-confirm.php
CHANGED
@@ -7,7 +7,7 @@ Author: Yuichiro ABE
|
|
7 |
Author URI: http://www.eyeta.jp/
|
8 |
Text Domain: contact-form-7-confirm
|
9 |
Domain Path: /languages/
|
10 |
-
Version: 4.1.
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2014- Yuichiro ABE (email: y.abe at eyeta.jp)
|
@@ -28,7 +28,7 @@ Version: 4.1.2
|
|
28 |
*/
|
29 |
|
30 |
|
31 |
-
define( 'WPCF7C_VERSION', '4.1.
|
32 |
|
33 |
if ( ! defined( 'WPCF7C_PLUGIN_BASENAME' ) )
|
34 |
define( 'WPCF7C_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
7 |
Author URI: http://www.eyeta.jp/
|
8 |
Text Domain: contact-form-7-confirm
|
9 |
Domain Path: /languages/
|
10 |
+
Version: 4.1.3
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2014- Yuichiro ABE (email: y.abe at eyeta.jp)
|
28 |
*/
|
29 |
|
30 |
|
31 |
+
define( 'WPCF7C_VERSION', '4.1.3' );
|
32 |
|
33 |
if ( ! defined( 'WPCF7C_PLUGIN_BASENAME' ) )
|
34 |
define( 'WPCF7C_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
includes/controller.php
CHANGED
@@ -17,6 +17,13 @@ function wpcf7c_control_init() {
|
|
17 |
remove_filter( 'wpcf7_validate_captchar', 'wpcf7_captcha_validation_filter', 10 );
|
18 |
add_filter( 'wpcf7_validate_captchar', 'wpcf7c_captcha_validation_filter', 10, 2 );
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
}
|
21 |
|
22 |
|
17 |
remove_filter( 'wpcf7_validate_captchar', 'wpcf7_captcha_validation_filter', 10 );
|
18 |
add_filter( 'wpcf7_validate_captchar', 'wpcf7c_captcha_validation_filter', 10, 2 );
|
19 |
|
20 |
+
|
21 |
+
if (isset($_POST['_wpcf7c']) && 'step1' == $_POST["_wpcf7c"]) {
|
22 |
+
remove_filter( 'wpcf7_ajax_onload', 'wpcf7_quiz_ajax_refill' );
|
23 |
+
remove_filter( 'wpcf7_ajax_json_echo', 'wpcf7_quiz_ajax_refill' );
|
24 |
+
}
|
25 |
+
|
26 |
+
|
27 |
}
|
28 |
|
29 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Yuichiro ABE
|
|
3 |
Donate link:
|
4 |
Tags: contact, form, contact form
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 4.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -107,8 +107,11 @@ An answer to that question.
|
|
107 |
4.1.2
|
108 |
CAPTCHA対応バグFIX
|
109 |
|
|
|
|
|
|
|
110 |
== Upgrade notice ==
|
111 |
|
112 |
-
4.1.
|
113 |
-
|
114 |
|
3 |
Donate link:
|
4 |
Tags: contact, form, contact form
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.2.2
|
7 |
+
Stable tag: 4.1.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
107 |
4.1.2
|
108 |
CAPTCHA対応バグFIX
|
109 |
|
110 |
+
4.1.3
|
111 |
+
quizに対応
|
112 |
+
|
113 |
== Upgrade notice ==
|
114 |
|
115 |
+
4.1.3
|
116 |
+
quizに対応
|
117 |
|