Ticket #13326: 13326.1.diff

File 13326.1.diff, 776 bytes (added by simonwheatley, 3 years ago)

Adds $is_iphone to the global declaration

  • wp-includes/general-template.php

     
    17211721 * @return bool 
    17221722 */ 
    17231723function user_can_richedit() { 
    1724         global $wp_rich_edit, $pagenow; 
     1724        global $wp_rich_edit, $pagenow, $is_iphone; 
    17251725 
    17261726        if ( !isset( $wp_rich_edit) ) { 
    17271727                if ( get_user_option( 'rich_editing' ) == 'true' && 
     1728            !$is_iphone && // this includes all Safari mobile browsers  
    17281729                        ( ( preg_match( '!AppleWebKit/(\d+)!', $_SERVER['HTTP_USER_AGENT'], $match ) && intval($match[1]) >= 420 ) || 
    17291730                                !preg_match( '!opera[ /][2-8]|konqueror|safari!i', $_SERVER['HTTP_USER_AGENT'] ) ) 
    17301731                                && 'comment.php' != $pagenow ) {