From bf579a153f8f0d6fb081a1d11718ea48c779da34 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 6 Oct 2015 14:58:07 +0200 Subject: fix IE8 user agent detection --- lib/private/appframework/http/request.php | 1 + lib/public/util.php | 14 -------------- 2 files changed, 1 insertion(+), 14 deletions(-) (limited to 'lib') diff --git a/lib/private/appframework/http/request.php b/lib/private/appframework/http/request.php index 3e24eec37c8..77785135162 100644 --- a/lib/private/appframework/http/request.php +++ b/lib/private/appframework/http/request.php @@ -43,6 +43,7 @@ use OCP\Security\ISecureRandom; class Request implements \ArrayAccess, \Countable, IRequest { const USER_AGENT_IE = '/MSIE/'; + const USER_AGENT_IE_8 = '/MSIE 8.0/'; // Android Chrome user agent: https://developers.google.com/chrome/mobile/docs/user-agent const USER_AGENT_ANDROID_MOBILE_CHROME = '#Android.*Chrome/[.0-9]*#'; const USER_AGENT_FREEBOX = '#^Mozilla/5\.0$#'; diff --git a/lib/public/util.php b/lib/public/util.php index 2b81b6bfc49..76b61347d46 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -670,18 +670,4 @@ class Util { } return self::$needUpgradeCache; } - - /** - * Returns whether the current request is coming from a - * famous awfully old browser. - * - * @return boolean true if it's IE8, false otherwise - */ - public static function isIE8() { - preg_match('/MSIE (.*?);/', $_SERVER['HTTP_USER_AGENT'], $matches); - if (count($matches) > 0 && $matches[1] <= 9) { - return true; - } - return false; - } } -- cgit v1.2.3