Version Description
- Bugfix : Fixed a bug of action hook mwform_contact_data_save-mwf_xxx
Download this release
Release Info
Developer | inc2734 |
Plugin | MW WP Form |
Version | 3.0.1 |
Comparing to | |
See all releases |
Code changes from version 3.0.0 to 3.0.1
- classes/models/class.contact-data-setting.php +3 -3
- mw-wp-form.php +1 -1
- readme.txt +4 -1
classes/models/class.contact-data-setting.php
CHANGED
@@ -2,11 +2,11 @@
|
|
2 |
/**
|
3 |
* Name : MW WP Form Contact Data Setting
|
4 |
* Description: 管理画面クラス
|
5 |
-
* Version : 1.0.
|
6 |
* Author : Takashi Kitajima
|
7 |
* Author URI : http://2inc.org
|
8 |
* Created : January 1, 2015
|
9 |
-
* Modified :
|
10 |
* License : GPLv2 or later
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
*/
|
@@ -174,7 +174,7 @@ class MW_WP_Form_Contact_Data_Setting {
|
|
174 |
}
|
175 |
update_post_meta( $this->post_id, MWF_config::CONTACT_DATA_NAME, $permit_values );
|
176 |
|
177 |
-
$contact_data_post_type =
|
178 |
do_action( 'mwform_contact_data_save-' . $contact_data_post_type, $this->post_id );
|
179 |
|
180 |
if ( $is_save_no_permit_value !== true ) {
|
2 |
/**
|
3 |
* Name : MW WP Form Contact Data Setting
|
4 |
* Description: 管理画面クラス
|
5 |
+
* Version : 1.0.4
|
6 |
* Author : Takashi Kitajima
|
7 |
* Author URI : http://2inc.org
|
8 |
* Created : January 1, 2015
|
9 |
+
* Modified : February 2, 2017
|
10 |
* License : GPLv2 or later
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
*/
|
174 |
}
|
175 |
update_post_meta( $this->post_id, MWF_config::CONTACT_DATA_NAME, $permit_values );
|
176 |
|
177 |
+
$contact_data_post_type = get_post_type( $this->post_id );
|
178 |
do_action( 'mwform_contact_data_save-' . $contact_data_post_type, $this->post_id );
|
179 |
|
180 |
if ( $is_save_no_permit_value !== true ) {
|
mw-wp-form.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: MW WP Form
|
4 |
* Plugin URI: http://plugins.2inc.org/mw-wp-form/
|
5 |
* Description: MW WP Form is shortcode base contact form plugin. This plugin have many feature. For example you can use many validation rules, contact data saving, and chart aggregation using saved contact data.
|
6 |
-
* Version: 3.0.
|
7 |
* Author: Takashi Kitajima
|
8 |
* Author URI: http://2inc.org
|
9 |
* Created : September 25, 2012
|
3 |
* Plugin Name: MW WP Form
|
4 |
* Plugin URI: http://plugins.2inc.org/mw-wp-form/
|
5 |
* Description: MW WP Form is shortcode base contact form plugin. This plugin have many feature. For example you can use many validation rules, contact data saving, and chart aggregation using saved contact data.
|
6 |
+
* Version: 3.0.1
|
7 |
* Author: Takashi Kitajima
|
8 |
* Author URI: http://2inc.org
|
9 |
* Created : September 25, 2012
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.amazon.co.jp/registry/wishlist/39ANKRNSTNW40
|
|
4 |
Tags: plugin, form, confirm, preview, shortcode, mail, chart, graph, html, contact form, form creation, form creator, form manager, form builder, custom form
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.7.1
|
7 |
-
Stable tag: 3.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -80,6 +80,9 @@ Do you have questions or issues with MW WP Form? Use these support channels appr
|
|
80 |
|
81 |
== Changelog ==
|
82 |
|
|
|
|
|
|
|
83 |
= 3.0.0 =
|
84 |
* Added : Added method MWF_Functions::get_form_id_from_form_key( $form_key );
|
85 |
* Added : Added action hook mwform_after_exec_shortcode
|
4 |
Tags: plugin, form, confirm, preview, shortcode, mail, chart, graph, html, contact form, form creation, form creator, form manager, form builder, custom form
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.7.1
|
7 |
+
Stable tag: 3.0.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
80 |
|
81 |
== Changelog ==
|
82 |
|
83 |
+
= 3.0.1 =
|
84 |
+
* Bugfix : Fixed a bug of action hook mwform_contact_data_save-mwf_xxx
|
85 |
+
|
86 |
= 3.0.0 =
|
87 |
* Added : Added method MWF_Functions::get_form_id_from_form_key( $form_key );
|
88 |
* Added : Added action hook mwform_after_exec_shortcode
|