diff --git src/wp-includes/class-wp-editor.php src/wp-includes/class-wp-editor.php
index b74e762..deec569 100644
|
|
final class _WP_Editors { |
646 | 646 | 'body_class' => $body_class |
647 | 647 | ); |
648 | 648 | |
| 649 | if( current_user_can( 'unfiltered_html' ) ) { |
| 650 | $mceInit['extended_valid_elements'] = 'img[id|accesskey|class|dir|lang|style|tabindex|title|contenteditable|contextmenu|draggable|dropzone|hidden|spellcheck|translate|src|alt=|usemap|ismap|width|height|name|longdesc|align|border|hspace|vspace|crossorigin|onmouseover|onmouseout]'; |
| 651 | } |
| 652 | |
649 | 653 | if ( $first_run ) |
650 | 654 | $mceInit = array_merge( self::$first_init, $mceInit ); |
651 | 655 | |