From: lpsolit%gmail.com <> Date: Mon, 16 Nov 2009 11:21:29 +0000 (+0000) Subject: Bug 475234: OS sniffing doesn't detect Windows 7 - Patch by Siddharth Agarwal [:sid0... X-Git-Tag: bugzilla-3.4.4~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc1537315805b2e9d01e7a9c9dea6523349c6a28;p=thirdparty%2Fbugzilla.git Bug 475234: OS sniffing doesn't detect Windows 7 - Patch by Siddharth Agarwal [:sid0] r=timeless a=LpSolit --- diff --git a/enter_bug.cgi b/enter_bug.cgi index 408336121d..debd9dab88 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -289,6 +289,7 @@ sub pickos { /\(.*VMS.*\)/ && do {push @os, "OpenVMS";}; /\(.*Win.*\)/ && do { /\(.*Windows XP.*\)/ && do {push @os, "Windows XP";}; + /\(.*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";}; /\(.*Windows NT 5\.1.*\)/ && do {push @os, "Windows XP";};