Revert r36811.
Built from https://develop.svn.wordpress.org/trunk@36812 git-svn-id: http://core.svn.wordpress.org/trunk@36779 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0cd76839f1
commit
7150ec43c9
|
@ -120,9 +120,17 @@ $is_iis7 = $is_IIS && intval( substr( $_SERVER['SERVER_SOFTWARE'], strpos( $_SER
|
||||||
/**
|
/**
|
||||||
* Test if the current browser runs on a mobile device (smart phone, tablet, etc.)
|
* Test if the current browser runs on a mobile device (smart phone, tablet, etc.)
|
||||||
*
|
*
|
||||||
|
* @staticvar bool $is_mobile
|
||||||
|
*
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
function wp_is_mobile() {
|
function wp_is_mobile() {
|
||||||
|
static $is_mobile = null;
|
||||||
|
|
||||||
|
if ( isset( $is_mobile ) ) {
|
||||||
|
return $is_mobile;
|
||||||
|
}
|
||||||
|
|
||||||
if ( empty($_SERVER['HTTP_USER_AGENT']) ) {
|
if ( empty($_SERVER['HTTP_USER_AGENT']) ) {
|
||||||
$is_mobile = false;
|
$is_mobile = false;
|
||||||
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'Mobile') !== false // many mobile devices (all iPhone, iPad, etc.)
|
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'Mobile') !== false // many mobile devices (all iPhone, iPad, etc.)
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.5-beta1-36811';
|
$wp_version = '4.5-beta1-36812';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue