MW WP Form - Version 1.1.1

Version Description

  • Bug fix: CSV
Download this release

Release Info

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

Code changes from version 1.1.0 to 1.1.1

mw-wp-form.php CHANGED
@@ -3,11 +3,11 @@
3
  * Plugin Name: MW WP Form
4
  * Plugin URI: http://2inc.org/blog/category/products/wordpress_plugins/mw-wp-form/
5
  * Description: MW WP Form can create mail form with a confirmation screen.
6
- * Version: 1.1.0
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
- * Created: September 25, 2012
10
- * Modified: October 31, 2013
11
  * Text Domain: mw-wp-form
12
  * Domain Path: /languages/
13
  * License: GPL2
3
  * Plugin Name: MW WP Form
4
  * Plugin URI: http://2inc.org/blog/category/products/wordpress_plugins/mw-wp-form/
5
  * Description: MW WP Form can create mail form with a confirmation screen.
6
+ * Version: 1.1.1
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
+ * Created : September 25, 2012
10
+ * Modified: November 18, 2013
11
  * Text Domain: mw-wp-form
12
  * Domain Path: /languages/
13
  * License: GPL2
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.amazon.co.jp/registry/wishlist/39ANKRNSTNW40
4
  Tags: plugin, form, confirm, preview, shortcode
5
  Requires at least: 3.4
6
  Tested up to: 3.6.1
7
- Stable tag: 1.1.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -37,6 +37,9 @@ http://2inc.org/blog/category/products/wordpress_plugins/mw-wp-form/
37
 
38
  == Changelog ==
39
 
 
 
 
40
  = 1.1.0 =
41
  * Added : mwform_value_識別子 フィルターフック追加
42
  * Added : mwform_hidden の引数 echo を追加( true or false )
4
  Tags: plugin, form, confirm, preview, shortcode
5
  Requires at least: 3.4
6
  Tested up to: 3.6.1
7
+ Stable tag: 1.1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
37
 
38
  == Changelog ==
39
 
40
+ = 1.1.1 =
41
+ * Bug fix: ダウンロードしたCSVに全件表示されないバグを修正
42
+
43
  = 1.1.0 =
44
  * Added : mwform_value_識別子 フィルターフック追加
45
  * Added : mwform_hidden の引数 echo を追加( true or false )
system/mw_wp_form_contact_data_page.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW WP Form Contact Data Page
4
  * URI: http://2inc.org
5
  * Description: DB保存データを扱うクラス
6
- * Version: 1.0.2
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : October 10, 2013
10
- * Modified: December 6, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -153,7 +153,7 @@ class MW_WP_Form_Contact_Data_Page {
153
 
154
  $posts_mwf = get_posts( array(
155
  'post_type' => $post_type,
156
- 'pre_get_posts' => -1,
157
  'post_status' => 'any',
158
  ) );
159
  $csv = '';
3
  * Name: MW WP Form Contact Data Page
4
  * URI: http://2inc.org
5
  * Description: DB保存データを扱うクラス
6
+ * Version: 1.0.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : October 10, 2013
10
+ * Modified: November 18, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
153
 
154
  $posts_mwf = get_posts( array(
155
  'post_type' => $post_type,
156
+ 'posts_per_page' => -1,
157
  'post_status' => 'any',
158
  ) );
159
  $csv = '';