diff options
author | gerv%gerv.net <> | 2003-01-06 17:39:16 +0100 |
---|---|---|
committer | gerv%gerv.net <> | 2003-01-06 17:39:16 +0100 |
commit | dd1b1cf548e7f749f7206f4c3ff6502466c137fc (patch) | |
tree | cf7a5e04c19114c084d1b6ba6f81e247e69882af /enter_bug.cgi | |
parent | 8f35cfedd052502f5606c88d400939fc425c6a13 (diff) | |
download | bugzilla-dd1b1cf548e7f749f7206f4c3ff6502466c137fc.tar.gz bugzilla-dd1b1cf548e7f749f7206f4c3ff6502466c137fc.tar.xz |
Bug 186920 - Loosen checking for Windows ME user-agents. Patch by gerv; r,a=justdave.
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-x | enter_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi index 162431ecd..7f74c5483 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -180,7 +180,7 @@ sub pickos { /\(.*Windows 2000.*\)/ && do {return "Windows 2000";}; /\(.*Windows NT 5.*\)/ && do {return "Windows 2000";}; /\(.*Windows.*NT.*\)/ && do {return "Windows NT";}; - /\(.*Win.*98.*4\.9.*\)/ && do {return "Windows ME";}; + /\(.*Win.*9[8x].*4\.9.*\)/ && do {return "Windows ME";}; /\(.*Win98.*\)/ && do {return "Windows 98";}; /\(.*Win95.*\)/ && do {return "Windows 95";}; /\(.*Win16.*\)/ && do {return "Windows 3.1";}; |