Make WordPress Core

Ticket #31161: 31161.patch

File 31161.patch, 978 bytes (added by iseulde, 10 years ago)
  • src/wp-includes/class-wp-editor.php

     
    593593                                 * @param array  $buttons   Second-row list of buttons.
    594594                                 * @param string $editor_id Unique editor identifier, e.g. 'content'.
    595595                                 */
    596                                 $mce_buttons_2 = apply_filters( 'mce_buttons_2', array( 'formatselect', 'underline', 'alignjustify', 'forecolor', 'pastetext', 'removeformat', 'charmap', 'outdent', 'indent', 'undo', 'redo', 'wp_help' ), $editor_id );
     596                                $mce_buttons_2 = apply_filters( 'mce_buttons_2', array( 'formatselect', 'underline', 'alignjustify', 'forecolor', 'pastetext', 'removeformat', 'charmap', 'outdent', 'indent', 'undo', 'redo' ), $editor_id );
     597
     598                                if ( ! wp_is_mobile() ) {
     599                                        $mce_buttons_2[] = 'wp_help';
     600                                }
    597601
    598602                                /**
    599603                                 * Filter the third-row list of TinyMCE buttons (Visual tab).