From: dave%intrec.com <> Date: Sat, 10 Mar 2001 16:56:23 +0000 (+0000) Subject: Fixing broken OS detection code for Mac PPC X-Git-Tag: bugzilla-2.12~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ee44e44e416040f6649ecf68ff426d30823542f;p=thirdparty%2Fbugzilla.git Fixing broken OS detection code for Mac PPC --- diff --git a/enter_bug.cgi b/enter_bug.cgi index 8574d7795f..f6fb78d874 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";};