Changeset 2752188
- Timestamp:
- 07/05/2022 05:17:01 PM (4 years ago)
- Location:
- black-studio-tinymce-widget/trunk
- Files:
-
- 3 edited
-
black-studio-tinymce-widget.php (modified) (2 diffs)
-
includes/class-admin.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
black-studio-tinymce-widget/trunk/black-studio-tinymce-widget.php
r2750754 r2752188 4 4 Plugin URI: https://wordpress.org/plugins/black-studio-tinymce-widget/ 5 5 Description: Adds a new "Visual Editor" widget type based on the native WordPress TinyMCE editor. 6 Version: 2.7. 16 Version: 2.7.2 7 7 Author: Black Studio 8 8 Author URI: https://www.blackstudio.it … … 36 36 * @since 2.0.0 37 37 */ 38 public static $version = '2.7. 1';38 public static $version = '2.7.2'; 39 39 40 40 /** -
black-studio-tinymce-widget/trunk/includes/class-admin.php
r2750754 r2752188 223 223 $this->enqueue_script(); 224 224 $this->localize_script(); 225 do_action( 'wp_enqueue_editor', array( 'tinymce' => true ) ); 225 if ( function_exists( 'wp_enqueue_editor' ) ) { 226 wp_enqueue_editor(); 227 } 228 else { 229 do_action( 'wp_enqueue_editor', array( 230 'tinymce' => true, 231 'quicktags' => true, 232 ) ); 233 } 226 234 } 227 235 -
black-studio-tinymce-widget/trunk/readme.txt
r2750754 r2752188 6 6 Tested up to: 6.0 7 7 Requires PHP: 5.2 8 Stable tag: 2.7. 18 Stable tag: 2.7.2 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl.html … … 213 213 214 214 == Changelog == 215 216 = 2.7.2 (2022-07-05) = 217 * Fixed compatibility issue with Toolset Types WYSIWYG fields 215 218 216 219 = 2.7.1 (2022-07-01) = … … 553 556 == Upgrade Notice == 554 557 555 = 2.7. 1=558 = 2.7.2 = 556 559 Important: Always ensure to backup your database before upgrading.
Note: See TracChangeset
for help on using the changeset viewer.