summaryrefslogtreecommitdiffstats
path: root/enter_bug.cgi
diff options
context:
space:
mode:
authordave%intrec.com <>2001-03-10 17:56:23 +0100
committerdave%intrec.com <>2001-03-10 17:56:23 +0100
commit0ee44e44e416040f6649ecf68ff426d30823542f (patch)
treeb1ecb9f3a6e1766c53d89afe10f3913043bb0b8f /enter_bug.cgi
parentcdbfbf1fafefcd5e30915e5b12f8c4ea26f4721a (diff)
downloadbugzilla-0ee44e44e416040f6649ecf68ff426d30823542f.tar.gz
bugzilla-0ee44e44e416040f6649ecf68ff426d30823542f.tar.xz
Fixing broken OS detection code for Mac PPC
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-xenter_bug.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi
index 8574d7795..f6fb78d87 100755
--- a/enter_bug.cgi
+++ b/enter_bug.cgi
@@ -200,7 +200,7 @@ sub pickos {
/Mozilla.*\(.*;.*; 32bit.*\)/ && do {return "Windows 95";};
/Mozilla.*\(.*;.*; 16bit.*\)/ && do {return "Windows 3.1";};
/Mozilla.*\(.*;.*; 68K.*\)/ && do {return "Mac System 8.5";};
- /Mozilla.*\(.*;.*; PPC.*\)/ && do {return "Mac System 8.5 or later";};
+ /Mozilla.*\(.*;.*; PPC.*\)/ && do {return "Mac System 8.5";};
/Mozilla.*\(.*;.*; OSF.*\)/ && do {return "OSF/1";};
/Mozilla.*\(.*;.*; Linux.*\)/ && do {return "Linux";};
/Mozilla.*\(.*;.*; SunOS 5.*\)/ && do {return "Solaris";};