diff options
author | Marius Blüm <marius@lineone.io> | 2016-08-17 09:02:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-17 09:02:58 +0200 |
commit | c1632c3abd0f136b4ecb8d7a5bef5c3c72f9cb95 (patch) | |
tree | f39dd2b81c9743d9912359cbd3649101b8db383d /lib/private | |
parent | 0cc8b8b244fe921226a53c9c03c40e13f63b6362 (diff) | |
parent | 8f3dc0ba43123915c25ff9b328104d6fe4faf9e9 (diff) | |
download | nextcloud-server-c1632c3abd0f136b4ecb8d7a5bef5c3c72f9cb95.tar.gz nextcloud-server-c1632c3abd0f136b4ecb8d7a5bef5c3c72f9cb95.zip |
Merge pull request #893 from nextcloud/ie8_be_gone
IE8 be gone!
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/AppFramework/Http/Request.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/private/AppFramework/Http/Request.php b/lib/private/AppFramework/Http/Request.php index 8fb19f2d9b2..2139ad05c2e 100644 --- a/lib/private/AppFramework/Http/Request.php +++ b/lib/private/AppFramework/Http/Request.php @@ -56,7 +56,6 @@ use OCP\Security\ISecureRandom; class Request implements \ArrayAccess, \Countable, IRequest { const USER_AGENT_IE = '/(MSIE)|(Trident)/'; - const USER_AGENT_IE_8 = '/MSIE 8.0/'; // Microsoft Edge User Agent from https://msdn.microsoft.com/en-us/library/hh869301(v=vs.85).aspx const USER_AGENT_MS_EDGE = '/^Mozilla\/5\.0 \([^)]+\) AppleWebKit\/[0-9.]+ \(KHTML, like Gecko\) Chrome\/[0-9.]+ (Mobile Safari|Safari)\/[0-9.]+ Edge\/[0-9.]+$/'; // Firefox User Agent from https://developer.mozilla.org/en-US/docs/Web/HTTP/Gecko_user_agent_string_reference |