Changeset 15461
- Timestamp:
- 07/22/2010 05:35:18 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0/wp-includes/general-template.php
r15434 r15461 1722 1722 */ 1723 1723 function user_can_richedit() { 1724 global $wp_rich_edit, $pagenow ;1724 global $wp_rich_edit, $pagenow, $is_iphone; 1725 1725 1726 1726 if ( !isset( $wp_rich_edit) ) { 1727 1727 if ( get_user_option( 'rich_editing' ) == 'true' && 1728 !$is_iphone && // this includes all Safari mobile browsers 1728 1729 ( ( preg_match( '!AppleWebKit/(\d+)!', $_SERVER['HTTP_USER_AGENT'], $match ) && intval($match[1]) >= 420 ) || 1729 1730 !preg_match( '!opera[ /][2-8]|konqueror|safari!i', $_SERVER['HTTP_USER_AGENT'] ) )
Note: See TracChangeset
for help on using the changeset viewer.