Black Studio TinyMCE Widget - Version 2.2.12

Version Description

(2016-09-23) = * Fixed issue with Page Builder's Live Editor

Download this release

Release Info

Developer marcochiesi
Plugin Icon 128x128 Black Studio TinyMCE Widget
Version 2.2.12
Comparing to
See all releases

Code changes from version 2.2.11 to 2.2.12

black-studio-tinymce-widget.php CHANGED
@@ -3,11 +3,11 @@
3
  Plugin Name: Black Studio TinyMCE Widget
4
  Plugin URI: https://wordpress.org/plugins/black-studio-tinymce-widget/
5
  Description: Adds a new "Visual Editor" widget type based on the native WordPress TinyMCE editor.
6
- Version: 2.2.11
7
  Author: Black Studio
8
  Author URI: http://www.blackstudio.it
9
  Requires at least: 3.1
10
- Tested up to: 4.5
11
  License: GPLv3
12
  Text Domain: black-studio-tinymce-widget
13
  Domain Path: /languages
@@ -35,7 +35,7 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Plugin' ) ) {
35
  * @var string
36
  * @since 2.0.0
37
  */
38
- public static $version = '2.2.11';
39
 
40
  /**
41
  * The single instance of the plugin class
3
  Plugin Name: Black Studio TinyMCE Widget
4
  Plugin URI: https://wordpress.org/plugins/black-studio-tinymce-widget/
5
  Description: Adds a new "Visual Editor" widget type based on the native WordPress TinyMCE editor.
6
+ Version: 2.2.12
7
  Author: Black Studio
8
  Author URI: http://www.blackstudio.it
9
  Requires at least: 3.1
10
+ Tested up to: 4.6
11
  License: GPLv3
12
  Text Domain: black-studio-tinymce-widget
13
  Domain Path: /languages
35
  * @var string
36
  * @since 2.0.0
37
  */
38
+ public static $version = '2.2.12';
39
 
40
  /**
41
  * The single instance of the plugin class
includes/class-compatibility-plugins.php CHANGED
@@ -50,6 +50,9 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Compatibility_Plugins' ) ) {
50
  $this->$plugin();
51
  }
52
  }
 
 
 
53
  }
54
 
55
  /**
@@ -110,7 +113,6 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Compatibility_Plugins' ) ) {
110
  * @since 2.0.0
111
  */
112
  public function wpml_widget_text( $text, $instance = null, $widget = null ) {
113
- include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
114
  if( is_plugin_active( 'sitepress-multilingual-cms/sitepress.php' ) ) {
115
  if ( bstw()->check_widget( $widget ) && ! empty( $instance ) ) {
116
  if ( function_exists( 'icl_t' ) ) {
50
  $this->$plugin();
51
  }
52
  }
53
+ if ( ! function_exists( 'is_plugin_active' ) ) {
54
+ include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
55
+ }
56
  }
57
 
58
  /**
113
  * @since 2.0.0
114
  */
115
  public function wpml_widget_text( $text, $instance = null, $widget = null ) {
 
116
  if( is_plugin_active( 'sitepress-multilingual-cms/sitepress.php' ) ) {
117
  if ( bstw()->check_widget( $widget ) && ! empty( $instance ) ) {
118
  if ( function_exists( 'icl_t' ) ) {
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: black-studio, marcochiesi, thedarkmist
3
  Donate link: http://www.blackstudio.it/en/wordpress-plugins/black-studio-tinymce-widget/
4
  Tags: wysiwyg, widget, tinymce, editor, image, media, rich text, rich text editor, visual editor, wysiwyg editor, tinymce editor, widget editor, html editor, wysiwyg widget, html widget, editor widget, text widget, rich text widget, enhanced text widget, tinymce widget, visual widget, image widget, media widget
5
  Requires at least: 3.1
6
- Tested up to: 4.5
7
- Stable tag: 2.2.11
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl.html
10
 
@@ -180,6 +180,9 @@ Plugin's data is stored in serialized format inside a record in the `wp_options`
180
 
181
  == Changelog ==
182
 
 
 
 
183
  = 2.2.11 (2016-08-19) =
184
  * Fixed compatibility issue with Polylang in Customizer
185
 
@@ -445,5 +448,5 @@ Plugin's data is stored in serialized format inside a record in the `wp_options`
445
 
446
  == Upgrade Notice ==
447
 
448
- = 2.2.11 =
449
  Version 2.x is a major update. If you are upgrading from version 1.x please ensure to backup your database before upgrading.
3
  Donate link: http://www.blackstudio.it/en/wordpress-plugins/black-studio-tinymce-widget/
4
  Tags: wysiwyg, widget, tinymce, editor, image, media, rich text, rich text editor, visual editor, wysiwyg editor, tinymce editor, widget editor, html editor, wysiwyg widget, html widget, editor widget, text widget, rich text widget, enhanced text widget, tinymce widget, visual widget, image widget, media widget
5
  Requires at least: 3.1
6
+ Tested up to: 4.6
7
+ Stable tag: 2.2.12
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl.html
10
 
180
 
181
  == Changelog ==
182
 
183
+ = 2.2.12 (2016-09-23) =
184
+ * Fixed issue with Page Builder's Live Editor
185
+
186
  = 2.2.11 (2016-08-19) =
187
  * Fixed compatibility issue with Polylang in Customizer
188
 
448
 
449
  == Upgrade Notice ==
450
 
451
+ = 2.2.12 =
452
  Version 2.x is a major update. If you are upgrading from version 1.x please ensure to backup your database before upgrading.