MW WP Form - Version 4.0.6

Version Description

  • Fixed a bug that line feed was not applied to the form that using the block editor.
Download this release

Release Info

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

Code changes from version 4.0.5 to 4.0.6

classes/services/class.exec-shortcode.php CHANGED
@@ -284,7 +284,7 @@ class MW_WP_Form_Exec_Shortcode {
284
  protected function _wpautop( $content ) {
285
  $has_wpautop = false;
286
 
287
- if ( function_exists( 'is_gutenberg_page' ) ) {
288
  $has_wpautop = true;
289
  } elseif ( has_filter( 'the_content', 'wpautop' ) ) {
290
  $has_wpautop = true;
284
  protected function _wpautop( $content ) {
285
  $has_wpautop = false;
286
 
287
+ if ( has_filter( 'the_content', '_restore_wpautop_hook' ) ) {
288
  $has_wpautop = true;
289
  } elseif ( has_filter( 'the_content', 'wpautop' ) ) {
290
  $has_wpautop = true;
mw-wp-form.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: MW WP Form
4
  * Plugin URI: https://plugins.2inc.org/mw-wp-form/
5
  * Description: MW WP Form is shortcode base contact form plugin. This plugin have many features. For example you can use many validation rules, inquiry data saving, and chart aggregation using saved inquiry data.
6
- * Version: 4.0.5
7
  * Author: Takashi Kitajima
8
  * Author URI: https://2inc.org
9
  * Created : September 25, 2012
3
  * Plugin Name: MW WP Form
4
  * Plugin URI: https://plugins.2inc.org/mw-wp-form/
5
  * Description: MW WP Form is shortcode base contact form plugin. This plugin have many features. For example you can use many validation rules, inquiry data saving, and chart aggregation using saved inquiry data.
6
+ * Version: 4.0.6
7
  * Author: Takashi Kitajima
8
  * Author URI: https://2inc.org
9
  * Created : September 25, 2012
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === MW WP Form ===
2
- Contributors: inc2734, ryu263, tomothumb, nanniku, mt8.biz, NExt-Season, kuck1u, mypacecreator, mh35
3
  Donate link: https://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: 5.0.1
7
- Stable tag: 4.0.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -71,6 +71,9 @@ Do you have questions or issues with MW WP Form? Use these support channels appr
71
 
72
  == Changelog ==
73
 
 
 
 
74
  = 4.0.5 =
75
  * Add filter hook mwform_send_nocache_header.
76
  * Fix MWF_Functions::_return_deprecated_message() error.
1
  === MW WP Form ===
2
+ Contributors: inc2734, ryu263, tomothumb, nanniku, mt8.biz, NExt-Season, kuck1u, mypacecreator, mh35, grace-create
3
  Donate link: https://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: 5.0.1
7
+ Stable tag: 4.0.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
71
 
72
  == Changelog ==
73
 
74
+ = 4.0.6 =
75
+ * Fixed a bug that line feed was not applied to the form that using the block editor.
76
+
77
  = 4.0.5 =
78
  * Add filter hook mwform_send_nocache_header.
79
  * Fix MWF_Functions::_return_deprecated_message() error.