diff options
author | Matt Selsky <selsky@columbia.edu> | 2012-02-26 12:51:11 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-02-26 12:51:11 +0100 |
commit | 5c7b519fd62222b18202e93889748008e698d5c1 (patch) | |
tree | 45510cd2f925de0667a8dd8c2fd0b2ad9e4ec31a /enter_bug.cgi | |
parent | d1b309b7d5cb8e07a9840baca4799c52ce158813 (diff) | |
download | bugzilla-5c7b519fd62222b18202e93889748008e698d5c1.tar.gz bugzilla-5c7b519fd62222b18202e93889748008e698d5c1.tar.xz |
Bug 714368: Add Windows 8 detection
r/a=LpSolit
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-x | enter_bug.cgi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi index 4778e4418..ce50a2ce6 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -294,6 +294,7 @@ sub pickos { /\(.*VMS.*\)/ && do {push @os, "OpenVMS";}; /\(.*Win.*\)/ && do { /\(.*Windows XP.*\)/ && do {push @os, "Windows XP";}; + /\(.*Windows NT 6\.2.*\)/ && do {push @os, "Windows 8";}; /\(.*Windows NT 6\.1.*\)/ && do {push @os, "Windows 7";}; /\(.*Windows NT 6\.0.*\)/ && do {push @os, "Windows Vista";}; /\(.*Windows NT 5\.2.*\)/ && do {push @os, "Windows Server 2003";}; |