mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-05-20 11:14:28 +00:00
General: revert [38467], wp_is_IE() should not exist.
See #37699. git-svn-id: https://develop.svn.wordpress.org/trunk@38468 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -2904,11 +2904,12 @@ function wp_dependencies_unique_hosts() {
|
||||
* @global bool $is_opera
|
||||
* @global bool $is_safari
|
||||
* @global bool $is_chrome
|
||||
* @global bool $is_IE
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
function user_can_richedit() {
|
||||
global $wp_rich_edit, $is_gecko, $is_opera, $is_safari, $is_chrome, $is_edge;
|
||||
global $wp_rich_edit, $is_gecko, $is_opera, $is_safari, $is_chrome, $is_IE, $is_edge;
|
||||
|
||||
if ( !isset($wp_rich_edit) ) {
|
||||
$wp_rich_edit = false;
|
||||
@@ -2916,7 +2917,7 @@ function user_can_richedit() {
|
||||
if ( get_user_option( 'rich_editing' ) == 'true' || ! is_user_logged_in() ) { // default to 'true' for logged out users
|
||||
if ( $is_safari ) {
|
||||
$wp_rich_edit = ! wp_is_mobile() || ( preg_match( '!AppleWebKit/(\d+)!', $_SERVER['HTTP_USER_AGENT'], $match ) && intval( $match[1] ) >= 534 );
|
||||
} elseif ( $is_gecko || $is_chrome || wp_is_IE() || $is_edge || ( $is_opera && !wp_is_mobile() ) ) {
|
||||
} elseif ( $is_gecko || $is_chrome || $is_IE || $is_edge || ( $is_opera && !wp_is_mobile() ) ) {
|
||||
$wp_rich_edit = true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user