Changeset 27159 for trunk/src/wp-includes/class-wp-editor.php
- Timestamp:
- 02/10/2014 11:47:34 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r27093 r27159 208 208 209 209 if ( $set['teeny'] ) { 210 self::$plugins = $plugins = apply_filters( 'teeny_mce_plugins', array( 'fullscreen', 'link', 'image', 'wordpress', 'wp link' ), $editor_id );210 self::$plugins = $plugins = apply_filters( 'teeny_mce_plugins', array( 'fullscreen', 'link', 'image', 'wordpress', 'wpeditimage', 'wplink' ), $editor_id ); 211 211 } else { 212 212 /** … … 336 336 } 337 337 338 // WordPress default stylesheet 339 $mce_css = array( self::$baseurl . '/skins/wordpress/wp-content.css' ); 338 $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; 339 $version = 'ver=' . $GLOBALS['wp_version']; 340 $dashicons = includes_url( "css/dashicons$suffix.css?$version" ); 341 342 // WordPress default stylesheet and dashicons 343 $mce_css = array( $dashicons, self::$baseurl . '/skins/wordpress/wp-content.css' ); 340 344 341 345 // load editor_style.css if the current theme supports it
Note: See TracChangeset
for help on using the changeset viewer.