Changeset 42529 for trunk/src/wp-includes/general-template.php
- Timestamp:
- 01/18/2018 02:42:34 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r42343 r42529 3082 3082 $wp_rich_edit = ! wp_is_mobile() || ( preg_match( '!AppleWebKit/(\d+)!', $_SERVER['HTTP_USER_AGENT'], $match ) && intval( $match[1] ) >= 534 ); 3083 3083 } elseif ( $is_IE ) { 3084 $wp_rich_edit = ( strpos( $_SERVER['HTTP_USER_AGENT'], ' MSIE ' ) === false );3084 $wp_rich_edit = ( strpos( $_SERVER['HTTP_USER_AGENT'], 'Trident/7.0;' ) !== false ); 3085 3085 } elseif ( $is_gecko || $is_chrome || $is_edge || ( $is_opera && ! wp_is_mobile() ) ) { 3086 3086 $wp_rich_edit = true;
Note: See TracChangeset
for help on using the changeset viewer.