summaryrefslogtreecommitdiffstats
path: root/enter_bug.cgi
diff options
context:
space:
mode:
authortimeless%mozdev.org <>2006-08-08 07:02:20 +0200
committertimeless%mozdev.org <>2006-08-08 07:02:20 +0200
commit7826a3a493f9d4b36cbbb177b2ab3d244624e6b2 (patch)
tree3b7a62b323df8c1e4c3d0f7cecb3b20ea9955a96 /enter_bug.cgi
parent7376b09e2d81d6b673d72ccf11c043d8790e5f72 (diff)
downloadbugzilla-7826a3a493f9d4b36cbbb177b2ab3d244624e6b2.tar.gz
bugzilla-7826a3a493f9d4b36cbbb177b2ab3d244624e6b2.tar.xz
Bug 347777 Intel Mac should be detected as Hardware: PC rather than Hardware: Mac
r=justdave a=justdave
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-xenter_bug.cgi1
1 files changed, 1 insertions, 0 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi
index 70c989eca..a5a4cedca 100755
--- a/enter_bug.cgi
+++ b/enter_bug.cgi
@@ -183,6 +183,7 @@ sub pickplatform {
/\(.*PPC.*\)/ && do {@platform = "Macintosh"; last;};
/\(.*AIX.*\)/ && do {@platform = "Macintosh"; last;};
#Intel x86
+ /\(.*Intel.*\)/ && do {@platform = "PC"; last;};
/\(.*[ix0-9]86.*\)/ && do {@platform = "PC"; last;};
#Versions of Windows that only run on Intel x86
/\(.*Win(?:dows )[39M].*\)/ && do {@platform = "PC"; last};