Commit 046f5447 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 468617: OS sniffing doesn't detect OS X 10.5 - Patch by Matt Selsky…

Bug 468617: OS sniffing doesn't detect OS X 10.5 - Patch by Matt Selsky <selsky@columbia.edu> r=timeless a=LpSolit
parent 853393e2
......@@ -302,6 +302,7 @@ sub pickos {
/\(.*Windows.*NT.*\)/ && do {push @os, "Windows NT";};
};
/\(.*Mac OS X.*\)/ && do {
/\(.*Intel.*Mac OS X 10.5.*\)/ && do {push @os, "Mac OS X 10.5";};
/\(.*Intel.*Mac OS X.*\)/ && do {push @os, "Mac OS X 10.4";};
/\(.*Mac OS X.*\)/ && do {push @os, ("Mac OS X 10.3", "Mac OS X 10.0", "Mac OS X");};
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment