Make WordPress Core

Changeset 15461


Ignore:
Timestamp:
07/22/2010 05:35:18 PM (14 years ago)
Author:
nacin
Message:

Disable the visual editor in iOS. props azaozz, simonwheatley. fixes #13326 for 3.0.1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.0/wp-includes/general-template.php

    r15434 r15461  
    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'] ) )
Note: See TracChangeset for help on using the changeset viewer.