MW WP Form - Version 2.6.3

Version Description

  • Bugfix : Fixed a eq validation bug.
Download this release

Release Info

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

Code changes from version 2.6.2 to 2.6.3

classes/validation-rules/class.eq.php CHANGED
@@ -2,11 +2,11 @@
2
  /**
3
  * Name : MW WP Form Validation Rule Eq
4
  * Description: 値が一致している
5
- * Version : 1.1.1
6
  * Author : Takashi Kitajima
7
  * Author URI : http://2inc.org
8
  * Created : July 21, 2014
9
- * Modified : April 1, 2015
10
  * License : GPLv2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  */
@@ -27,7 +27,7 @@ class MW_WP_Form_Validation_Rule_Eq extends MW_WP_Form_Abstract_Validation_Rule
27
  */
28
  public function rule( $key, array $options = array() ) {
29
  $value = $this->Data->get( $key );
30
- if ( !MWF_Functions::is_empty( $value ) ) {
31
  $defaults = array(
32
  'target' => null,
33
  'message' => __( 'This is not in agreement.', 'mw-wp-form' )
@@ -60,4 +60,4 @@ class MW_WP_Form_Validation_Rule_Eq extends MW_WP_Form_Abstract_Validation_Rule
60
  </table>
61
  <?php
62
  }
63
- }
2
  /**
3
  * Name : MW WP Form Validation Rule Eq
4
  * Description: 値が一致している
5
+ * Version : 1.1.2
6
  * Author : Takashi Kitajima
7
  * Author URI : http://2inc.org
8
  * Created : July 21, 2014
9
+ * Modified : December 3, 2015
10
  * License : GPLv2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  */
27
  */
28
  public function rule( $key, array $options = array() ) {
29
  $value = $this->Data->get( $key );
30
+ if ( !is_null( $value ) ) {
31
  $defaults = array(
32
  'target' => null,
33
  'message' => __( 'This is not in agreement.', 'mw-wp-form' )
60
  </table>
61
  <?php
62
  }
63
+ }
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.6.2
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : September 25, 2012
10
- * Modified: November 2, 2015
11
  * Text Domain: mw-wp-form
12
  * Domain Path: /languages/
13
  * License: GPLv2 or later
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.6.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : September 25, 2012
10
+ * Modified: December 3, 2015
11
  * Text Domain: mw-wp-form
12
  * Domain Path: /languages/
13
  * License: GPLv2 or later
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.3.1
7
- Stable tag: 2.6.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -78,6 +78,9 @@ Do you have questions or issues with MW WP Form? Use these support channels appr
78
 
79
  == Changelog ==
80
 
 
 
 
81
  = 2.6.2 =
82
  * Bugfix : Fixed a bug that class attribute can't set at radio.
83
  * Bugfix : Fixed a bug that id and class attribute can't set at file.
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.3.1
7
+ Stable tag: 2.6.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
78
 
79
  == Changelog ==
80
 
81
+ = 2.6.3 =
82
+ * Bugfix : Fixed a eq validation bug.
83
+
84
  = 2.6.2 =
85
  * Bugfix : Fixed a bug that class attribute can't set at radio.
86
  * Bugfix : Fixed a bug that id and class attribute can't set at file.