Ticket #28259: 28259.diff
File 28259.diff, 695 bytes (added by , 9 years ago) |
---|
-
wp-includes/class-wp-editor.php
130 130 */ 131 131 public static function editor( $content, $editor_id, $settings = array() ) { 132 132 133 $set = self::parse_settings( $editor_id, $settings);133 $set = self::parse_settings( $editor_id, apply_filters( 'wp_editor_settings', $settings, $editor_id ) ); 134 134 $editor_class = ' class="' . trim( $set['editor_class'] . ' wp-editor-area' ) . '"'; 135 135 $tabindex = $set['tabindex'] ? ' tabindex="' . (int) $set['tabindex'] . '"' : ''; 136 136 $switch_class = 'html-active';