Update the basic browser detection to detect IE11. Fixes #25562.
git-svn-id: https://develop.svn.wordpress.org/trunk@25767 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
31e9963904
commit
85c62ad3be
@ -68,12 +68,12 @@ if ( isset($_SERVER['HTTP_USER_AGENT']) ) {
|
|||||||
}
|
}
|
||||||
} elseif ( stripos($_SERVER['HTTP_USER_AGENT'], 'safari') !== false ) {
|
} elseif ( stripos($_SERVER['HTTP_USER_AGENT'], 'safari') !== false ) {
|
||||||
$is_safari = true;
|
$is_safari = true;
|
||||||
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'Gecko') !== false ) {
|
} elseif ( ( strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'Trident') !== false ) && strpos($_SERVER['HTTP_USER_AGENT'], 'Win') !== false ) {
|
||||||
$is_gecko = true;
|
|
||||||
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Win') !== false ) {
|
|
||||||
$is_winIE = true;
|
$is_winIE = true;
|
||||||
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Mac') !== false ) {
|
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Mac') !== false ) {
|
||||||
$is_macIE = true;
|
$is_macIE = true;
|
||||||
|
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'Gecko') !== false ) {
|
||||||
|
$is_gecko = true;
|
||||||
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'Opera') !== false ) {
|
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'Opera') !== false ) {
|
||||||
$is_opera = true;
|
$is_opera = true;
|
||||||
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'Nav') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Mozilla/4.') !== false ) {
|
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'Nav') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Mozilla/4.') !== false ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user