MW WP Form - Version 1.2.3

Version Description

  • Bug fix :
Download this release

Release Info

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

Code changes from version 1.2.2 to 1.2.3

js/editor_plugin.js.php CHANGED
@@ -35,7 +35,7 @@ header( 'Content-Type: text/javascript' );
35
  '<?php echo $qtags['display']; ?>',
36
  '<?php echo $qtags['arg1'] . $qtags['arg2']; ?>'
37
  );
38
- <?
39
  }
40
  }
41
  }
35
  '<?php echo $qtags['display']; ?>',
36
  '<?php echo $qtags['arg1'] . $qtags['arg2']; ?>'
37
  );
38
+ <?php
39
  }
40
  }
41
  }
mw-wp-form.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: MW WP Form
4
  * Plugin URI: http://2inc.org/manual-mw-wp-form/
5
  * Description: MW WP Form can create mail form with a confirmation screen.
6
- * Version: 1.2.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://2inc.org/manual-mw-wp-form/
5
  * Description: MW WP Form can create mail form with a confirmation screen.
6
+ * Version: 1.2.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
5
  Requires at least: 3.4
6
  Tested up to: 3.8.0
7
- Stable tag: 1.2.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -47,6 +47,9 @@ Do you have questions or issues with MW WP Form? Use these support channels appr
47
 
48
  == Changelog ==
49
 
 
 
 
50
  = 1.2.2 =
51
  * Added : ビジュアルエディタにショートコード挿入ボタンを追加
52
 
4
  Tags: plugin, form, confirm, preview, shortcode
5
  Requires at least: 3.4
6
  Tested up to: 3.8.0
7
+ Stable tag: 1.2.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
47
 
48
  == Changelog ==
49
 
50
+ = 1.2.3 =
51
+ * Bug fix : ビジュアルエディタショートコードボタンがどの投稿タイプでもでてしまうバグを修正
52
+
53
  = 1.2.2 =
54
  * Added : ビジュアルエディタにショートコード挿入ボタンを追加
55
 
system/mw_wp_form_admin_page.php CHANGED
@@ -3,7 +3,7 @@
3
  * Name: MW WP Form Admin Page
4
  * URI: http://2inc.org
5
  * Description: 管理画面クラス
6
- * Version: 1.7.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : February 21, 2013
@@ -48,7 +48,7 @@ class MW_WP_Form_Admin_Page {
48
  * add_tinymce
49
  */
50
  public function add_tinymce() {
51
- if ( get_user_option( 'rich_editing' ) == 'true' ) {
52
  add_filter( 'mce_external_plugins', array( $this, 'add_tinymce_plugin' ) );
53
  add_filter( 'mce_buttons', array( $this, 'add_tinymce_button' ) );
54
  }
3
  * Name: MW WP Form Admin Page
4
  * URI: http://2inc.org
5
  * Description: 管理画面クラス
6
+ * Version: 1.7.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : February 21, 2013
48
  * add_tinymce
49
  */
50
  public function add_tinymce() {
51
+ if ( get_user_option( 'rich_editing' ) === 'true' && get_post_type() === MWF_Config::NAME ) {
52
  add_filter( 'mce_external_plugins', array( $this, 'add_tinymce_plugin' ) );
53
  add_filter( 'mce_buttons', array( $this, 'add_tinymce_button' ) );
54
  }