Changeset 22567 for trunk/wp-includes/class-wp-editor.php
- Timestamp:
- 11/14/2012 07:17:22 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-editor.php
r22416 r22567 192 192 self::$mce_locale = $mce_locale = ( '' == get_locale() ) ? 'en' : strtolower( substr(get_locale(), 0, 2) ); // only ISO 639-1 193 193 $no_captions = (bool) apply_filters( 'disable_captions', '' ); 194 $plugins = array( 'inlinepopups', 'spellchecker', 'tabfocus', 'paste', 'media', 'fullscreen', 'wordpress', 'wp link', 'wpdialogs', 'wpview' );194 $plugins = array( 'inlinepopups', 'spellchecker', 'tabfocus', 'paste', 'media', 'fullscreen', 'wordpress', 'wpeditimage', 'wpgallery', 'wplink', 'wpdialogs' ); 195 195 $first_run = true; 196 196 $ext_plugins = ''; 197 197 198 198 if ( $set['teeny'] ) { 199 self::$plugins = $plugins = apply_filters( 'teeny_mce_plugins', array('inlinepopups', 'fullscreen', 'wordpress', 'wplink', 'wpdialogs' , 'wpview'), $editor_id );199 self::$plugins = $plugins = apply_filters( 'teeny_mce_plugins', array('inlinepopups', 'fullscreen', 'wordpress', 'wplink', 'wpdialogs' ), $editor_id ); 200 200 } else { 201 201 /*
Note: See TracChangeset
for help on using the changeset viewer.