summaryrefslogtreecommitdiffstats
path: root/Bugzilla/UserAgent.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2013-10-21 07:14:18 +0200
committerByron Jones <bjones@mozilla.com>2013-10-21 07:14:18 +0200
commit717cad2171889a960136bfc663c624a5043b79a3 (patch)
treea00a7d40891a6a26cc1161ae980c42d29d081b07 /Bugzilla/UserAgent.pm
parent5f0666846bc13293ec246f3bcd7de3d80503beef (diff)
downloadbugzilla-717cad2171889a960136bfc663c624a5043b79a3.tar.gz
bugzilla-717cad2171889a960136bfc663c624a5043b79a3.tar.xz
Bug 928092: Add OS detection for Windows 8.1
Diffstat (limited to 'Bugzilla/UserAgent.pm')
-rw-r--r--Bugzilla/UserAgent.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/UserAgent.pm b/Bugzilla/UserAgent.pm
index afddff958..4b729a4ee 100644
--- a/Bugzilla/UserAgent.pm
+++ b/Bugzilla/UserAgent.pm
@@ -123,7 +123,8 @@ use constant OS_MAP => (
qr/\(.*Android.*\)/ => ["Android"],
# Windows
qr/\(.*Windows XP.*\)/ => ["Windows XP"],
- qr/\(.*Windows NT 6\.2.*\)/ => ["Windows 8"],
+ qr/\(.*Windows NT 6\.3.*\)/ => ["Windows 8.1"],
+ qr/\(.*Windows NT 6\.2.*\)/ => ["Windows 8"],
qr/\(.*Windows NT 6\.1.*\)/ => ["Windows 7"],
qr/\(.*Windows NT 6\.0.*\)/ => ["Windows Vista"],
qr/\(.*Windows NT 5\.2.*\)/ => ["Windows Server 2003"],