diff --git a/wp-includes/vars.php b/wp-includes/vars.php index d894884c48..c903101997 100644 --- a/wp-includes/vars.php +++ b/wp-includes/vars.php @@ -120,17 +120,9 @@ $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.) * - * @staticvar bool $is_mobile - * * @return bool */ function wp_is_mobile() { - static $is_mobile = null; - - if ( isset( $is_mobile ) ) { - return $is_mobile; - } - if ( empty($_SERVER['HTTP_USER_AGENT']) ) { $is_mobile = false; } elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'Mobile') !== false // many mobile devices (all iPhone, iPad, etc.) diff --git a/wp-includes/version.php b/wp-includes/version.php index af38ad5fe9..3ba163ca01 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-beta1-36810'; +$wp_version = '4.5-beta1-36811'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.