aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortimeless%mac.com <>2002-04-15 10:54:17 +0000
committertimeless%mac.com <>2002-04-15 10:54:17 +0000
commitcf1c1f169ee55e72c782e8bffc54bbf2b55568ba (patch)
treea04ceae5d529be7915b04e7223f53e78e88af18e /enter_bug.cgi
parentBug 129442 - make html of a default installation (mostly) HTML 4.01 (diff)
downloadbugzilla-cf1c1f169ee55e72c782e8bffc54bbf2b55568ba.tar.gz
bugzilla-cf1c1f169ee55e72c782e8bffc54bbf2b55568ba.tar.bz2
bugzilla-cf1c1f169ee55e72c782e8bffc54bbf2b55568ba.zip
Bug 92763 Add Windows XP as OS selection for entering/searching bugs
patch by ddk r=bbaetz r=justdave Bug 135666 Creating bugs: OS detection doesn't work for Internet Explorer, Win NT 4. patch by ddk+johannes.pellenz@sdm.de r=bbaetz r=justdave Adds Windows XP to the bugzilla OS list Activates the Windows XP detection (it was commented out waiting for this fix...) Makes Windows NT (4) detection match the pattern everything else used
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-xenter_bug.cgi8
1 files changed, 4 insertions, 4 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi
index 8ca0443b3..ec008b9d6 100755
--- a/enter_bug.cgi
+++ b/enter_bug.cgi
@@ -173,11 +173,11 @@ sub pickos {
/\(.*IBM.*\)/ && do {return "OS/2";};
/\(.*QNX.*\)/ && do {return "Neutrino";};
/\(.*VMS.*\)/ && do {return "OpenVMS";};
-# /\(.*Windows XP.*\)/ && do {return "Windows XP";};
-# /\(.*Windows NT 5\.1.*\)/ && do {return "Windows XP";};
+ /\(.*Windows XP.*\)/ && do {return "Windows XP";};
+ /\(.*Windows NT 5\.1.*\)/ && do {return "Windows XP";};
/\(.*Windows 2000.*\)/ && do {return "Windows 2000";};
- /Windows NT 5.*\)/ && do {return "Windows 2000";};
- /\(Windows.*NT/ && do {return "Windows NT";};
+ /\(.*Windows NT 5.*\)/ && do {return "Windows 2000";};
+ /\(.*Windows.*NT.*\)/ && do {return "Windows NT";};
/\(.*Win.*98.*4\.9.*\)/ && do {return "Windows ME";};
/\(.*Win98.*\)/ && do {return "Windows 98";};
/\(.*Win95.*\)/ && do {return "Windows 95";};