MW WP Form - Version 2.4.12

Version Description

Download this release

Release Info

Developer inc2734
Plugin Icon wp plugin MW WP Form
Version 2.4.12
Comparing to
See all releases

Code changes from version 2.4.11 to 2.4.12

classes/form-fields/class.checkbox.php CHANGED
@@ -2,11 +2,11 @@
2
  /**
3
  * Name : MW WP Form Field Checkbox
4
  * Description: チェックボックスを出力
5
- * Version : 1.5.10
6
  * Author : Takashi Kitajima
7
  * Author URI : http://2inc.org
8
  * Created : December 14, 2012
9
- * Modified : April 24, 2015
10
  * License : GPLv2
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  */
@@ -45,7 +45,7 @@ class MW_WP_Form_Field_Checkbox extends MW_WP_Form_Abstract_Form_Field {
45
  'vertically' => null,
46
  'post_raw' => 'false',
47
  'show_error' => 'true',
48
- 'separator' => ', ',
49
  );
50
  }
51
 
2
  /**
3
  * Name : MW WP Form Field Checkbox
4
  * Description: チェックボックスを出力
5
+ * Version : 1.5.11
6
  * Author : Takashi Kitajima
7
  * Author URI : http://2inc.org
8
  * Created : December 14, 2012
9
+ * Modified : June 23, 2015
10
  * License : GPLv2
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  */
45
  'vertically' => null,
46
  'post_raw' => 'false',
47
  'show_error' => 'true',
48
+ 'separator' => ',',
49
  );
50
  }
51
 
classes/models/class.abstract-form-field.php CHANGED
@@ -2,11 +2,11 @@
2
  /**
3
  * Name : MW WP Form Abstract Form Field
4
  * Description: フォームフィールドの抽象クラス
5
- * Version : 1.7.3
6
  * Author : Takashi Kitajima
7
  * Author URI : http://2inc.org
8
  * Created : December 14, 2012
9
- * Modified : April 15, 2015
10
  * License : GPLv2
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  */
@@ -160,7 +160,7 @@ abstract class MW_WP_Form_Abstract_Form_Field {
160
  */
161
  abstract protected function input_page();
162
  public function _input_page( $atts ) {
163
- if ( isset( $this->defaults['value'], $atts['name'] ) && !isset( $atts['value'] ) ) {
164
  $atts['value'] = apply_filters(
165
  'mwform_value_' . $this->form_key,
166
  $this->defaults['value'],
2
  /**
3
  * Name : MW WP Form Abstract Form Field
4
  * Description: フォームフィールドの抽象クラス
5
+ * Version : 1.7.4
6
  * Author : Takashi Kitajima
7
  * Author URI : http://2inc.org
8
  * Created : December 14, 2012
9
+ * Modified : June 23, 2015
10
  * License : GPLv2
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  */
160
  */
161
  abstract protected function input_page();
162
  public function _input_page( $atts ) {
163
+ if ( array_key_exists( 'value', $this->defaults ) && isset( $atts['name'] ) && !isset( $atts['value'] ) ) {
164
  $atts['value'] = apply_filters(
165
  'mwform_value_' . $this->form_key,
166
  $this->defaults['value'],
mw-wp-form.php CHANGED
@@ -3,11 +3,11 @@
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: 2.4.11
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : September 25, 2012
10
- * Modified: May 25, 2015
11
  * Text Domain: mw-wp-form
12
  * Domain Path: /languages/
13
  * License: GPLv2
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: 2.4.12
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : September 25, 2012
10
+ * Modified: June 23, 2015
11
  * Text Domain: mw-wp-form
12
  * Domain Path: /languages/
13
  * License: GPLv2
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === MW WP Form ===
2
- Contributors: inc2734, ryu263, tomothumb
3
  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: 3.7
6
  Tested up to: 4.2.2
7
- Stable tag: 2.4.11
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -48,6 +48,7 @@ Source: https://developers.google.com/chart/
48
  * [Takashi Kitajima](http://2inc.org) ( [inc2734](http://profiles.wordpress.org/inc2734) )
49
  * [Ryujiro Yamamoto](http://webcre-archive.com) ( [ryu263](http://profiles.wordpress.org/ryu263) )
50
  * [Tsujimoto Tomoyuki](http://kee-non.com) ( [tomothumb](http://profiles.wordpress.org/tomothumb) )
 
51
 
52
  == Installation ==
53
 
@@ -72,6 +73,10 @@ Do you have questions or issues with MW WP Form? Use these support channels appr
72
 
73
  == Changelog ==
74
 
 
 
 
 
75
  = 2.4.11
76
  = Bugfix : Fixed a bug that attachment file does not displayed in contact data list page.
77
  = Changed : Trim email address on inputs.
1
  === MW WP Form ===
2
+ Contributors: inc2734, ryu263, tomothumb, nanniku
3
  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: 3.7
6
  Tested up to: 4.2.2
7
+ Stable tag: 2.4.12
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
48
  * [Takashi Kitajima](http://2inc.org) ( [inc2734](http://profiles.wordpress.org/inc2734) )
49
  * [Ryujiro Yamamoto](http://webcre-archive.com) ( [ryu263](http://profiles.wordpress.org/ryu263) )
50
  * [Tsujimoto Tomoyuki](http://kee-non.com) ( [tomothumb](http://profiles.wordpress.org/tomothumb) )
51
+ * [Naoyuki Ohata] ( [nanniku](http://profiles.wordpress.org/nanniku) )
52
 
53
  == Installation ==
54
 
73
 
74
  == Changelog ==
75
 
76
+ = 2.4.12
77
+ = Bugfix : filter hook 'mwform_value_mwf_xxx' does not work when to use radio or checkboxes.
78
+ = Changed : Changed checkbox default separator ', ' to ','.
79
+
80
  = 2.4.11
81
  = Bugfix : Fixed a bug that attachment file does not displayed in contact data list page.
82
  = Changed : Trim email address on inputs.