MW WP Form - Version 1.8.3

Version Description

  • Bug fix : Fix bug that file is not uploaded when validation is not set in the file field.
Download this release

Release Info

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

Code changes from version 1.8.2 to 1.8.3

Files changed (3) hide show
  1. mw-wp-form.php +1 -1
  2. readme.txt +4 -1
  3. system/mw_validation.php +3 -3
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 can create mail form with a confirmation screen.
6
- * Version: 1.8.2
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 can create mail form with a confirmation screen.
6
+ * Version: 1.8.3
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
5
  Requires at least: 3.7
6
  Tested up to: 3.9.1
7
- Stable tag: 1.8.2
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -54,6 +54,9 @@ Do you have questions or issues with MW WP Form? Use these support channels appr
54
 
55
  == Changelog ==
56
 
 
 
 
57
  = 1.8.2 =
58
  * Bug fix : Fix bug that PHP error is displayed in file type validation.
59
  * Bug fix : Fix bug that PHP error is displayed in admin page.
4
  Tags: plugin, form, confirm, preview, shortcode, mail
5
  Requires at least: 3.7
6
  Tested up to: 3.9.1
7
+ Stable tag: 1.8.3
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
54
 
55
  == Changelog ==
56
 
57
+ = 1.8.3 =
58
+ * Bug fix : Fix bug that file is not uploaded when validation is not set in the file field.
59
+
60
  = 1.8.2 =
61
  * Bug fix : Fix bug that PHP error is displayed in file type validation.
62
  * Bug fix : Fix bug that PHP error is displayed in admin page.
system/mw_validation.php CHANGED
@@ -2,11 +2,11 @@
2
  /**
3
  * Name: MW Validation
4
  * Description: バリデーションクラス
5
- * Version: 1.7.0
6
  * Author: Takashi Kitajima
7
  * Author URI: http://2inc.org
8
  * Created : July 20, 2012
9
- * Modified: July 23, 2014
10
  * License: GPLv2
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  */
@@ -118,8 +118,8 @@ class MW_Validation {
118
  if ( $this->_check( $key, $rules ) ) {
119
  return false;
120
  }
121
- return true;
122
  }
 
123
  }
124
 
125
  /**
2
  /**
3
  * Name: MW Validation
4
  * Description: バリデーションクラス
5
+ * Version: 1.7.1
6
  * Author: Takashi Kitajima
7
  * Author URI: http://2inc.org
8
  * Created : July 20, 2012
9
+ * Modified: August 26, 2014
10
  * License: GPLv2
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  */
118
  if ( $this->_check( $key, $rules ) ) {
119
  return false;
120
  }
 
121
  }
122
+ return true;
123
  }
124
 
125
  /**