Make WordPress Core

Ticket #19320: 19320-4.patch

File 19320-4.patch, 1.8 KB (added by azaozz, 13 years ago)
  • wp-includes/class-wp-editor.php

     
    3838                        'editor_class' => '', // add extra class(es) to the editor textarea
    3939                        'teeny' => false, // output the minimal editor config used in Press This
    4040                        'dfw' => false, // replace the default fullscreen with DFW (needs specific DOM elements and css)
    41                         'tinymce' => null, // load TinyMCE, can be used to pass settings directly to TinyMCE using an array()
     41                        'tinymce' => true, // load TinyMCE, can be used to pass settings directly to TinyMCE using an array()
    4242                        'quicktags' => true // load Quicktags, can be used to pass settings directly to Quicktags using an array()
    4343                ) );
    4444
    45                 if ( null === $set['tinymce'] )
    46                         self::$this_tinymce = user_can_richedit();
    47                 else
     45                if ( $set['tinymce'] && user_can_richedit() )
    4846                        self::$this_tinymce = (bool) $set['tinymce'];
    4947
    5048                self::$this_quicktags = (bool) $set['quicktags'];
  • wp-includes/general-template.php

     
    17491749function user_can_richedit() {
    17501750        global $wp_rich_edit, $is_gecko, $is_opera, $is_safari, $is_chrome, $is_iphone, $is_IE;
    17511751
    1752         if ( !isset( $wp_rich_edit) ) {
     1752        if ( !isset($wp_rich_edit) ) {
    17531753                $wp_rich_edit = false;
    17541754
    1755                 if ( get_user_option( 'rich_editing' ) == 'true' ) {
     1755                if ( get_user_option( 'rich_editing' ) == 'true' || !is_user_logged_in() ) { // default to 'true' for logged out users
    17561756                        if ( $is_safari ) {
    17571757                                if ( !$is_iphone || ( preg_match( '!AppleWebKit/(\d+)!', $_SERVER['HTTP_USER_AGENT'], $match ) && intval($match[1]) >= 534 ) )
    17581758                                        $wp_rich_edit = true;