We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4813b92 commit e977c2bCopy full SHA for e977c2b
class.jetpack-user-agent.php
@@ -10,6 +10,7 @@ function jetpack_is_mobile( $kind = 'any', $return_matched_agent = false ) {
10
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) || strpos( strtolower( $_SERVER['HTTP_USER_AGENT'] ), 'ipad' ) )
11
return false;
12
13
+ // Remove Samsung Galaxy tablets (SCH-I800) from being mobile devices
14
if ( strpos( strtolower( $_SERVER['HTTP_USER_AGENT'] ) , 'sch-i800') )
15
16
0 commit comments