Skip to content

Commit e977c2b

Browse files
Add comment to explain sch-i800
1 parent 4813b92 commit e977c2b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

class.jetpack-user-agent.php

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ function jetpack_is_mobile( $kind = 'any', $return_matched_agent = false ) {
1010
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) || strpos( strtolower( $_SERVER['HTTP_USER_AGENT'] ), 'ipad' ) )
1111
return false;
1212

13+
// Remove Samsung Galaxy tablets (SCH-I800) from being mobile devices
1314
if ( strpos( strtolower( $_SERVER['HTTP_USER_AGENT'] ) , 'sch-i800') )
1415
return false;
1516

0 commit comments

Comments
 (0)