diff options
author | timeless%mac.com <> | 2002-04-15 12:54:17 +0200 |
---|---|---|
committer | timeless%mac.com <> | 2002-04-15 12:54:17 +0200 |
commit | cf1c1f169ee55e72c782e8bffc54bbf2b55568ba (patch) | |
tree | a04ceae5d529be7915b04e7223f53e78e88af18e /enter_bug.cgi | |
parent | e75e6d0f714e77b1d7b700dca62aba0fd9a5385d (diff) | |
download | bugzilla-cf1c1f169ee55e72c782e8bffc54bbf2b55568ba.tar.gz bugzilla-cf1c1f169ee55e72c782e8bffc54bbf2b55568ba.tar.xz |
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-x | enter_bug.cgi | 8 |
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";}; |